tradeblocks-mcp 2.2.2 → 2.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -16,7 +16,7 @@ Model Context Protocol (MCP) server for options trading analysis. Works with Cla
16
16
 
17
17
  ### Option 1: MCPB Bundle (Claude Desktop - One Click)
18
18
 
19
- Download the latest `.mcpb` file from [GitHub Releases](https://github.com/davidromeo/tradeblocks/releases) and double-click to install.
19
+ Download the latest `.mcpb` file from [Releases](https://gitlab.com/davidromeo/tradeblocks/-/releases) and double-click to install.
20
20
 
21
21
  The installer will prompt you to select your Trading Data Directory.
22
22
 
@@ -37,7 +37,7 @@ See [Configuration by Platform](#configuration-by-platform) below for platform-s
37
37
  ### Option 3: From Source
38
38
 
39
39
  ```bash
40
- git clone https://github.com/davidromeo/tradeblocks
40
+ git clone https://gitlab.com/davidromeo/tradeblocks
41
41
  cd tradeblocks
42
42
  npm install
43
43
  npm run build -w packages/mcp-server
@@ -156,14 +156,14 @@ Run the MCP server in a container for remote/server deployments.
156
156
  ### Pre-built image (recommended)
157
157
 
158
158
  ```bash
159
- docker run -d -p 3100:3100 -v ./data:/data --env-file .env ghcr.io/davidromeo/tradeblocks-mcp:latest
159
+ docker run -d -p 3100:3100 -v ./data:/data --env-file .env romeo345/tradeblocks-mcp:latest
160
160
  ```
161
161
 
162
162
  Or with docker compose, set the image in `docker-compose.yml`:
163
163
  ```yaml
164
164
  services:
165
165
  tradeblocks:
166
- image: ghcr.io/davidromeo/tradeblocks-mcp:latest
166
+ image: romeo345/tradeblocks-mcp:latest
167
167
  ```
168
168
 
169
169
  ### Build from source
package/manifest.json CHANGED
@@ -7,15 +7,15 @@
7
7
  "long_description": "TradeBlocks MCP server provides comprehensive options trading analysis capabilities. Import your trade logs and get detailed performance statistics, run walk-forward analysis to detect overfitting, perform Monte Carlo simulations for risk assessment, calculate optimal position sizing with Kelly criterion, and compare backtest results against actual trading performance. All analysis runs locally on your machine.",
8
8
  "author": {
9
9
  "name": "David Romeo",
10
- "url": "https://github.com/davidromeo"
10
+ "url": "https://gitlab.com/davidromeo"
11
11
  },
12
12
  "repository": {
13
13
  "type": "git",
14
- "url": "https://github.com/davidromeo/tradeblocks"
14
+ "url": "https://gitlab.com/davidromeo/tradeblocks"
15
15
  },
16
- "homepage": "https://github.com/davidromeo/tradeblocks",
17
- "documentation": "https://github.com/davidromeo/tradeblocks/tree/master/packages/mcp-server",
18
- "support": "https://github.com/davidromeo/tradeblocks/issues",
16
+ "homepage": "https://gitlab.com/davidromeo/tradeblocks",
17
+ "documentation": "https://gitlab.com/davidromeo/tradeblocks/-/tree/master/packages/mcp-server",
18
+ "support": "https://gitlab.com/davidromeo/tradeblocks/-/issues",
19
19
  "server": {
20
20
  "type": "node",
21
21
  "entry_point": "server/index.js",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tradeblocks-mcp",
3
- "version": "2.2.2",
3
+ "version": "2.2.3",
4
4
  "description": "MCP server for options trade analysis",
5
5
  "author": "David Romeo <davidmromeo@gmail.com>",
6
6
  "type": "module",
@@ -55,7 +55,7 @@
55
55
  "license": "MIT",
56
56
  "repository": {
57
57
  "type": "git",
58
- "url": "https://github.com/davidromeo/tradeblocks",
58
+ "url": "https://gitlab.com/davidromeo/tradeblocks",
59
59
  "directory": "packages/mcp-server"
60
60
  }
61
61
  }