@pmxt/mcp 2.46.14 → 2.48.0
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 +59 -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-05-
|
|
2
|
+
// Generated from core/src/server/openapi.yaml (2026-05-30)
|
|
3
3
|
export const TOOLS = [
|
|
4
4
|
{
|
|
5
5
|
"name": "buildOrder",
|
|
@@ -829,6 +829,10 @@ export const TOOLS = [
|
|
|
829
829
|
"type": "string",
|
|
830
830
|
"description": "Lookup by event slug"
|
|
831
831
|
},
|
|
832
|
+
"series": {
|
|
833
|
+
"type": "string",
|
|
834
|
+
"description": "Filter events by their parent series. Accepts the venue-native series id / ticker / slug (e.g. Kalshi `\"KXATPMATCH\"`, Polymarket `\"wta\"`). Passed through to the vendor where supported, otherwise applied to `sourceMetadata` after fetch."
|
|
835
|
+
},
|
|
832
836
|
"filter": {
|
|
833
837
|
"allOf": [
|
|
834
838
|
{
|
|
@@ -1043,6 +1047,10 @@ export const TOOLS = [
|
|
|
1043
1047
|
"type": "string",
|
|
1044
1048
|
"description": "Lookup by event slug"
|
|
1045
1049
|
},
|
|
1050
|
+
"series": {
|
|
1051
|
+
"type": "string",
|
|
1052
|
+
"description": "Filter events by their parent series. Accepts the venue-native series id / ticker / slug (e.g. Kalshi `\"KXATPMATCH\"`, Polymarket `\"wta\"`). Passed through to the vendor where supported, otherwise applied to `sourceMetadata` after fetch."
|
|
1053
|
+
},
|
|
1046
1054
|
"filter": {
|
|
1047
1055
|
"allOf": [
|
|
1048
1056
|
{
|
|
@@ -2468,6 +2476,56 @@ export const TOOLS = [
|
|
|
2468
2476
|
}
|
|
2469
2477
|
]
|
|
2470
2478
|
},
|
|
2479
|
+
{
|
|
2480
|
+
"name": "fetchSeries",
|
|
2481
|
+
"description": "Fetch the recurring series (fourth tier above Event -> Market -> Outcome) that this venue exposes. Returns an empty array on venues without a series concept (Limitless, Smarkets, Probable, Metaculus, Baozi, Hyperliquid, SuiBets, Polymarket US). - `params.id` -> a single matching series with its events populated where supported. - no params -> the full list, typically without nested events for payload size.",
|
|
2482
|
+
"inputSchema": {
|
|
2483
|
+
"type": "object",
|
|
2484
|
+
"properties": {
|
|
2485
|
+
"exchange": {
|
|
2486
|
+
"type": "string",
|
|
2487
|
+
"enum": [
|
|
2488
|
+
"polymarket",
|
|
2489
|
+
"kalshi",
|
|
2490
|
+
"kalshi-demo",
|
|
2491
|
+
"limitless",
|
|
2492
|
+
"probable",
|
|
2493
|
+
"baozi",
|
|
2494
|
+
"myriad",
|
|
2495
|
+
"opinion",
|
|
2496
|
+
"metaculus",
|
|
2497
|
+
"smarkets",
|
|
2498
|
+
"polymarket_us",
|
|
2499
|
+
"gemini-titan",
|
|
2500
|
+
"hyperliquid",
|
|
2501
|
+
"suibets",
|
|
2502
|
+
"mock",
|
|
2503
|
+
"router"
|
|
2504
|
+
],
|
|
2505
|
+
"description": "The prediction market exchange to target."
|
|
2506
|
+
},
|
|
2507
|
+
"verbose": {
|
|
2508
|
+
"type": "boolean",
|
|
2509
|
+
"description": "Return full uncompacted response. Default false returns a compact, agent-friendly summary."
|
|
2510
|
+
}
|
|
2511
|
+
},
|
|
2512
|
+
"required": [
|
|
2513
|
+
"exchange"
|
|
2514
|
+
]
|
|
2515
|
+
},
|
|
2516
|
+
"annotations": {
|
|
2517
|
+
"readOnlyHint": true
|
|
2518
|
+
},
|
|
2519
|
+
"method": "fetchSeries",
|
|
2520
|
+
"args": [
|
|
2521
|
+
{
|
|
2522
|
+
"name": "params",
|
|
2523
|
+
"kind": "object",
|
|
2524
|
+
"optional": true,
|
|
2525
|
+
"flatten": true
|
|
2526
|
+
}
|
|
2527
|
+
]
|
|
2528
|
+
},
|
|
2471
2529
|
{
|
|
2472
2530
|
"name": "fetchTrades",
|
|
2473
2531
|
"description": "Fetch raw trade history for a specific outcome.",
|