@pmxt/mcp 2.35.30 → 2.35.32
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 +58 -1
- 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-
|
|
2
|
+
// Generated from core/src/server/openapi.yaml (2026-05-01)
|
|
3
3
|
export const TOOLS = [
|
|
4
4
|
{
|
|
5
5
|
"name": "buildOrder",
|
|
@@ -2741,5 +2741,62 @@ export const TOOLS = [
|
|
|
2741
2741
|
"flatten": false
|
|
2742
2742
|
}
|
|
2743
2743
|
]
|
|
2744
|
+
},
|
|
2745
|
+
{
|
|
2746
|
+
"name": "watchOrderBooks",
|
|
2747
|
+
"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.",
|
|
2748
|
+
"inputSchema": {
|
|
2749
|
+
"type": "object",
|
|
2750
|
+
"properties": {
|
|
2751
|
+
"exchange": {
|
|
2752
|
+
"type": "string",
|
|
2753
|
+
"enum": [
|
|
2754
|
+
"polymarket",
|
|
2755
|
+
"kalshi",
|
|
2756
|
+
"kalshi-demo",
|
|
2757
|
+
"limitless",
|
|
2758
|
+
"probable",
|
|
2759
|
+
"baozi",
|
|
2760
|
+
"myriad",
|
|
2761
|
+
"opinion",
|
|
2762
|
+
"metaculus",
|
|
2763
|
+
"smarkets",
|
|
2764
|
+
"polymarket_us",
|
|
2765
|
+
"router"
|
|
2766
|
+
],
|
|
2767
|
+
"description": "The prediction market exchange to target."
|
|
2768
|
+
},
|
|
2769
|
+
"ids": {},
|
|
2770
|
+
"limit": {
|
|
2771
|
+
"type": "number"
|
|
2772
|
+
},
|
|
2773
|
+
"verbose": {
|
|
2774
|
+
"type": "boolean",
|
|
2775
|
+
"description": "Return full uncompacted response. Default false returns a compact, agent-friendly summary."
|
|
2776
|
+
}
|
|
2777
|
+
},
|
|
2778
|
+
"required": [
|
|
2779
|
+
"exchange",
|
|
2780
|
+
"ids"
|
|
2781
|
+
]
|
|
2782
|
+
},
|
|
2783
|
+
"annotations": {
|
|
2784
|
+
"readOnlyHint": true
|
|
2785
|
+
},
|
|
2786
|
+
"method": "watchOrderBooks",
|
|
2787
|
+
"args": [
|
|
2788
|
+
{
|
|
2789
|
+
"name": "ids",
|
|
2790
|
+
"kind": "unknown",
|
|
2791
|
+
"optional": false,
|
|
2792
|
+
"flatten": false
|
|
2793
|
+
},
|
|
2794
|
+
{
|
|
2795
|
+
"name": "limit",
|
|
2796
|
+
"kind": "number",
|
|
2797
|
+
"optional": true,
|
|
2798
|
+
"flatten": false
|
|
2799
|
+
}
|
|
2800
|
+
]
|
|
2744
2801
|
}
|
|
2745
2802
|
];
|