@pmxt/mcp 2.51.3 → 2.52.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 +73 -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-07-18)
|
|
3
3
|
export const TOOLS = [
|
|
4
4
|
{
|
|
5
5
|
"name": "buildOrder",
|
|
@@ -79,6 +79,14 @@ export const TOOLS = [
|
|
|
79
79
|
"type": "number",
|
|
80
80
|
"description": "Optional fee rate (e.g., 1000 for 0.1%)"
|
|
81
81
|
},
|
|
82
|
+
"builder": {
|
|
83
|
+
"type": "string",
|
|
84
|
+
"description": "Hyperliquid builder address to attach to the order action."
|
|
85
|
+
},
|
|
86
|
+
"builderFee": {
|
|
87
|
+
"type": "number",
|
|
88
|
+
"description": "Hyperliquid builder fee in tenths of a basis point (e.g. 10 = 1 bp)."
|
|
89
|
+
},
|
|
82
90
|
"tickSize": {
|
|
83
91
|
"type": "number",
|
|
84
92
|
"description": "Optional override for Limitless/Polymarket"
|
|
@@ -363,6 +371,14 @@ export const TOOLS = [
|
|
|
363
371
|
"type": "number",
|
|
364
372
|
"description": "Optional fee rate (e.g., 1000 for 0.1%)"
|
|
365
373
|
},
|
|
374
|
+
"builder": {
|
|
375
|
+
"type": "string",
|
|
376
|
+
"description": "Hyperliquid builder address to attach to the order action."
|
|
377
|
+
},
|
|
378
|
+
"builderFee": {
|
|
379
|
+
"type": "number",
|
|
380
|
+
"description": "Hyperliquid builder fee in tenths of a basis point (e.g. 10 = 1 bp)."
|
|
381
|
+
},
|
|
366
382
|
"tickSize": {
|
|
367
383
|
"type": "number",
|
|
368
384
|
"description": "Optional override for Limitless/Polymarket"
|
|
@@ -995,6 +1011,62 @@ export const TOOLS = [
|
|
|
995
1011
|
}
|
|
996
1012
|
]
|
|
997
1013
|
},
|
|
1014
|
+
{
|
|
1015
|
+
"name": "fetchEventMetadata",
|
|
1016
|
+
"description": "Fetch venue-native metadata for a specific event when the exchange exposes a dedicated metadata endpoint. Kalshi implements this for `GET /events/{event_ticker}/metadata`.",
|
|
1017
|
+
"inputSchema": {
|
|
1018
|
+
"type": "object",
|
|
1019
|
+
"properties": {
|
|
1020
|
+
"exchange": {
|
|
1021
|
+
"type": "string",
|
|
1022
|
+
"enum": [
|
|
1023
|
+
"polymarket",
|
|
1024
|
+
"kalshi",
|
|
1025
|
+
"kalshi-demo",
|
|
1026
|
+
"limitless",
|
|
1027
|
+
"probable",
|
|
1028
|
+
"baozi",
|
|
1029
|
+
"myriad",
|
|
1030
|
+
"opinion",
|
|
1031
|
+
"metaculus",
|
|
1032
|
+
"smarkets",
|
|
1033
|
+
"polymarket_us",
|
|
1034
|
+
"gemini-titan",
|
|
1035
|
+
"hyperliquid",
|
|
1036
|
+
"suibets",
|
|
1037
|
+
"rain",
|
|
1038
|
+
"hunch",
|
|
1039
|
+
"mock",
|
|
1040
|
+
"router"
|
|
1041
|
+
],
|
|
1042
|
+
"description": "The prediction market exchange to target."
|
|
1043
|
+
},
|
|
1044
|
+
"eventTicker": {
|
|
1045
|
+
"type": "string"
|
|
1046
|
+
},
|
|
1047
|
+
"verbose": {
|
|
1048
|
+
"type": "boolean",
|
|
1049
|
+
"description": "Return full uncompacted response. Default false returns a compact, agent-friendly summary."
|
|
1050
|
+
}
|
|
1051
|
+
},
|
|
1052
|
+
"required": [
|
|
1053
|
+
"exchange",
|
|
1054
|
+
"eventTicker"
|
|
1055
|
+
]
|
|
1056
|
+
},
|
|
1057
|
+
"annotations": {
|
|
1058
|
+
"readOnlyHint": true
|
|
1059
|
+
},
|
|
1060
|
+
"method": "fetchEventMetadata",
|
|
1061
|
+
"args": [
|
|
1062
|
+
{
|
|
1063
|
+
"name": "eventTicker",
|
|
1064
|
+
"kind": "string",
|
|
1065
|
+
"optional": false,
|
|
1066
|
+
"flatten": false
|
|
1067
|
+
}
|
|
1068
|
+
]
|
|
1069
|
+
},
|
|
998
1070
|
{
|
|
999
1071
|
"name": "fetchEvents",
|
|
1000
1072
|
"description": "Fetch events with optional keyword search. Events group related markets together (e.g., \"Who will be Fed Chair?\" contains multiple candidate markets).",
|