tradeblocks-mcp 2.0.1 → 2.1.0-beta.2
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 +13 -2
- package/dist/chunk-BWUJ5CO2.js +22655 -0
- package/dist/chunk-BWUJ5CO2.js.map +1 -0
- package/dist/sync-TQ5D6HH3.js +24 -0
- package/dist/sync-TQ5D6HH3.js.map +1 -0
- package/dist/test-exports.js +1566 -22715
- package/dist/test-exports.js.map +1 -1
- package/package.json +3 -3
- package/server/chunk-PD3T4TXT.js +26366 -0
- package/server/chunk-PD3T4TXT.js.map +1 -0
- package/server/index.js +10048 -33786
- package/server/index.js.map +1 -1
- package/server/sync-TPYYLC7U.js +25 -0
- package/server/sync-TPYYLC7U.js.map +1 -0
package/README.md
CHANGED
|
@@ -8,8 +8,9 @@ Model Context Protocol (MCP) server for options trading analysis. Works with Cla
|
|
|
8
8
|
- **SQL analytics layer** - `run_sql` for arbitrary queries, `describe_database` for schema discovery
|
|
9
9
|
- **Two transport modes**: stdio (CLI tools) and HTTP (web platforms)
|
|
10
10
|
- **Block-based data organization** - each folder is a trading strategy
|
|
11
|
-
- **
|
|
11
|
+
- **DuckDB analytics** - statistics computed from DuckDB, no file caching needed
|
|
12
12
|
- **Flexible CSV detection** - auto-detects file types by column headers
|
|
13
|
+
- **Strategy profiles** - store and retrieve structured strategy metadata for targeted analysis
|
|
13
14
|
|
|
14
15
|
## Installation
|
|
15
16
|
|
|
@@ -249,7 +250,6 @@ backtests/
|
|
|
249
250
|
tradelog.csv # Required - trade history
|
|
250
251
|
dailylog.csv # Optional - daily portfolio values
|
|
251
252
|
reportinglog.csv # Optional - live/reported trades
|
|
252
|
-
block.json # Auto-generated - cached metadata
|
|
253
253
|
NDX-Put-Spread/
|
|
254
254
|
my-export.csv # Works! Auto-detected by columns
|
|
255
255
|
...
|
|
@@ -314,6 +314,17 @@ backtests/
|
|
|
314
314
|
| `suggest_filters` | Suggest trade filters based on market conditions |
|
|
315
315
|
| `calculate_orb` | Opening range breakout analysis from intraday bars |
|
|
316
316
|
|
|
317
|
+
### Strategy Profile Tools
|
|
318
|
+
| Tool | Description |
|
|
319
|
+
|------|-------------|
|
|
320
|
+
| `profile_strategy` | Create or update a strategy profile with structured metadata |
|
|
321
|
+
| `get_strategy_profile` | Retrieve a stored strategy profile |
|
|
322
|
+
| `list_profiles` | List all strategy profiles (optionally filtered by block) |
|
|
323
|
+
| `delete_profile` | Delete a strategy profile |
|
|
324
|
+
| `analyze_structure_fit` | Analyze strategy performance by regime/condition dimensions |
|
|
325
|
+
| `validate_entry_filters` | Test each entry filter's contribution to edge |
|
|
326
|
+
| `portfolio_structure_map` | Regime x structure coverage matrix across strategies |
|
|
327
|
+
|
|
317
328
|
### Import Tools
|
|
318
329
|
| Tool | Description |
|
|
319
330
|
|------|-------------|
|