@pmxt/mcp 2.41.3 → 2.41.5
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/dist/generated/tools.js +1 -58
- package/package.json +1 -1
package/dist/generated/tools.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// AUTO-GENERATED by mcp/scripts/generate-tools.js -- DO NOT EDIT
|
|
2
|
-
// Generated from core/src/server/openapi.yaml (2026-05-
|
|
2
|
+
// Generated from core/src/server/openapi.yaml (2026-05-16)
|
|
3
3
|
export const TOOLS = [
|
|
4
4
|
{
|
|
5
5
|
"name": "buildOrder",
|
|
@@ -2758,62 +2758,5 @@ export const TOOLS = [
|
|
|
2758
2758
|
"flatten": false
|
|
2759
2759
|
}
|
|
2760
2760
|
]
|
|
2761
|
-
},
|
|
2762
|
-
{
|
|
2763
|
-
"name": "watchOrderBooks",
|
|
2764
|
-
"description": "Watch multiple order books simultaneously via WebSocket. Returns a promise that resolves with a record of order book snapshots keyed by ID. Exchanges with native batch support (e.g. Kalshi) send a single subscribe message for all tickers; others fall back to individual watchOrderBook calls.\n\n**Transport:** WebSocket\n\n| Environment | URL |\n|---|---|\n| Local sidecar | `ws://localhost:3847/ws` |\n| Hosted API | `wss://api.pmxt.dev/ws?apiKey=YOUR_KEY` |\n\n**Subscribe:**\n```json\n{ \"id\": \"req-1\", \"action\": \"subscribe\", \"method\": \"watchOrderBooks\", \"args\": [...] }\n```\n\n**Server response:**\n```json\n{ \"event\": \"data\", \"id\": \"req-1\", \"method\": \"watchOrderBooks\", \"symbol\": \"...\", \"data\": { ... } }\n```\n\n**Unsubscribe:**\n```json\n{ \"id\": \"req-1\", \"action\": \"unsubscribe\" }\n```",
|
|
2765
|
-
"inputSchema": {
|
|
2766
|
-
"type": "object",
|
|
2767
|
-
"properties": {
|
|
2768
|
-
"exchange": {
|
|
2769
|
-
"type": "string",
|
|
2770
|
-
"enum": [
|
|
2771
|
-
"polymarket",
|
|
2772
|
-
"kalshi",
|
|
2773
|
-
"kalshi-demo",
|
|
2774
|
-
"limitless",
|
|
2775
|
-
"probable",
|
|
2776
|
-
"baozi",
|
|
2777
|
-
"myriad",
|
|
2778
|
-
"opinion",
|
|
2779
|
-
"metaculus",
|
|
2780
|
-
"smarkets",
|
|
2781
|
-
"polymarket_us",
|
|
2782
|
-
"router"
|
|
2783
|
-
],
|
|
2784
|
-
"description": "The prediction market exchange to target."
|
|
2785
|
-
},
|
|
2786
|
-
"outcomeIds": {},
|
|
2787
|
-
"limit": {
|
|
2788
|
-
"type": "number"
|
|
2789
|
-
},
|
|
2790
|
-
"verbose": {
|
|
2791
|
-
"type": "boolean",
|
|
2792
|
-
"description": "Return full uncompacted response. Default false returns a compact, agent-friendly summary."
|
|
2793
|
-
}
|
|
2794
|
-
},
|
|
2795
|
-
"required": [
|
|
2796
|
-
"exchange",
|
|
2797
|
-
"outcomeIds"
|
|
2798
|
-
]
|
|
2799
|
-
},
|
|
2800
|
-
"annotations": {
|
|
2801
|
-
"readOnlyHint": true
|
|
2802
|
-
},
|
|
2803
|
-
"method": "watchOrderBooks",
|
|
2804
|
-
"args": [
|
|
2805
|
-
{
|
|
2806
|
-
"name": "outcomeIds",
|
|
2807
|
-
"kind": "unknown",
|
|
2808
|
-
"optional": false,
|
|
2809
|
-
"flatten": false
|
|
2810
|
-
},
|
|
2811
|
-
{
|
|
2812
|
-
"name": "limit",
|
|
2813
|
-
"kind": "number",
|
|
2814
|
-
"optional": true,
|
|
2815
|
-
"flatten": false
|
|
2816
|
-
}
|
|
2817
|
-
]
|
|
2818
2761
|
}
|
|
2819
2762
|
];
|