@pmxt/mcp 2.32.4 → 2.33.1

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.
@@ -20,7 +20,8 @@ export const TOOLS = [
20
20
  "opinion",
21
21
  "metaculus",
22
22
  "smarkets",
23
- "polymarket_us"
23
+ "polymarket_us",
24
+ "router"
24
25
  ],
25
26
  "description": "The prediction market exchange to target."
26
27
  },
@@ -142,7 +143,8 @@ export const TOOLS = [
142
143
  "opinion",
143
144
  "metaculus",
144
145
  "smarkets",
145
- "polymarket_us"
146
+ "polymarket_us",
147
+ "router"
146
148
  ],
147
149
  "description": "The prediction market exchange to target."
148
150
  },
@@ -199,6 +201,56 @@ export const TOOLS = [
199
201
  }
200
202
  ]
201
203
  },
204
+ {
205
+ "name": "compareMarketPrices",
206
+ "description": "Compare prices across venues for identity matches of a market.",
207
+ "inputSchema": {
208
+ "type": "object",
209
+ "properties": {
210
+ "exchange": {
211
+ "type": "string",
212
+ "enum": [
213
+ "polymarket",
214
+ "kalshi",
215
+ "kalshi-demo",
216
+ "limitless",
217
+ "probable",
218
+ "baozi",
219
+ "myriad",
220
+ "opinion",
221
+ "metaculus",
222
+ "smarkets",
223
+ "polymarket_us",
224
+ "router"
225
+ ],
226
+ "description": "The prediction market exchange to target."
227
+ },
228
+ "params": {
229
+ "type": "object"
230
+ },
231
+ "verbose": {
232
+ "type": "boolean",
233
+ "description": "Return full uncompacted response. Default false returns a compact, agent-friendly summary."
234
+ }
235
+ },
236
+ "required": [
237
+ "exchange",
238
+ "params"
239
+ ]
240
+ },
241
+ "annotations": {
242
+ "readOnlyHint": true
243
+ },
244
+ "method": "compareMarketPrices",
245
+ "args": [
246
+ {
247
+ "name": "params",
248
+ "kind": "object",
249
+ "optional": false,
250
+ "flatten": false
251
+ }
252
+ ]
253
+ },
202
254
  {
203
255
  "name": "createOrder",
204
256
  "description": "Place a new order on the exchange.",
@@ -218,7 +270,8 @@ export const TOOLS = [
218
270
  "opinion",
219
271
  "metaculus",
220
272
  "smarkets",
221
- "polymarket_us"
273
+ "polymarket_us",
274
+ "router"
222
275
  ],
223
276
  "description": "The prediction market exchange to target."
224
277
  },
@@ -339,7 +392,8 @@ export const TOOLS = [
339
392
  "opinion",
340
393
  "metaculus",
341
394
  "smarkets",
342
- "polymarket_us"
395
+ "polymarket_us",
396
+ "router"
343
397
  ],
344
398
  "description": "The prediction market exchange to target."
345
399
  },
@@ -414,6 +468,61 @@ export const TOOLS = [
414
468
  }
415
469
  ]
416
470
  },
471
+ {
472
+ "name": "fetchArbitrage",
473
+ "description": "Scan for arbitrage opportunities across identity matches.",
474
+ "inputSchema": {
475
+ "type": "object",
476
+ "properties": {
477
+ "exchange": {
478
+ "type": "string",
479
+ "enum": [
480
+ "polymarket",
481
+ "kalshi",
482
+ "kalshi-demo",
483
+ "limitless",
484
+ "probable",
485
+ "baozi",
486
+ "myriad",
487
+ "opinion",
488
+ "metaculus",
489
+ "smarkets",
490
+ "polymarket_us",
491
+ "router"
492
+ ],
493
+ "description": "The prediction market exchange to target."
494
+ },
495
+ "minSpread": {
496
+ "type": "number"
497
+ },
498
+ "category": {
499
+ "type": "string"
500
+ },
501
+ "limit": {
502
+ "type": "number"
503
+ },
504
+ "verbose": {
505
+ "type": "boolean",
506
+ "description": "Return full uncompacted response. Default false returns a compact, agent-friendly summary."
507
+ }
508
+ },
509
+ "required": [
510
+ "exchange"
511
+ ]
512
+ },
513
+ "annotations": {
514
+ "readOnlyHint": true
515
+ },
516
+ "method": "fetchArbitrage",
517
+ "args": [
518
+ {
519
+ "name": "params",
520
+ "kind": "object",
521
+ "optional": true,
522
+ "flatten": true
523
+ }
524
+ ]
525
+ },
417
526
  {
418
527
  "name": "fetchBalance",
419
528
  "description": "Fetch account balances.",
@@ -433,7 +542,8 @@ export const TOOLS = [
433
542
  "opinion",
434
543
  "metaculus",
435
544
  "smarkets",
436
- "polymarket_us"
545
+ "polymarket_us",
546
+ "router"
437
547
  ],
438
548
  "description": "The prediction market exchange to target."
439
549
  },
@@ -508,7 +618,8 @@ export const TOOLS = [
508
618
  "opinion",
509
619
  "metaculus",
510
620
  "smarkets",
511
- "polymarket_us"
621
+ "polymarket_us",
622
+ "router"
512
623
  ],
513
624
  "description": "The prediction market exchange to target."
514
625
  },
@@ -602,7 +713,8 @@ export const TOOLS = [
602
713
  "opinion",
603
714
  "metaculus",
604
715
  "smarkets",
605
- "polymarket_us"
716
+ "polymarket_us",
717
+ "router"
606
718
  ],
607
719
  "description": "The prediction market exchange to target."
608
720
  },
@@ -695,6 +807,77 @@ export const TOOLS = [
695
807
  }
696
808
  ]
697
809
  },
810
+ {
811
+ "name": "fetchEventMatches",
812
+ "description": "Fetch cross-venue matches for a given event.",
813
+ "inputSchema": {
814
+ "type": "object",
815
+ "properties": {
816
+ "exchange": {
817
+ "type": "string",
818
+ "enum": [
819
+ "polymarket",
820
+ "kalshi",
821
+ "kalshi-demo",
822
+ "limitless",
823
+ "probable",
824
+ "baozi",
825
+ "myriad",
826
+ "opinion",
827
+ "metaculus",
828
+ "smarkets",
829
+ "polymarket_us",
830
+ "router"
831
+ ],
832
+ "description": "The prediction market exchange to target."
833
+ },
834
+ "eventId": {
835
+ "type": "string"
836
+ },
837
+ "slug": {
838
+ "type": "string"
839
+ },
840
+ "relation": {
841
+ "type": "string",
842
+ "enum": [
843
+ "identity",
844
+ "subset",
845
+ "superset",
846
+ "overlap",
847
+ "disjoint"
848
+ ]
849
+ },
850
+ "minConfidence": {
851
+ "type": "number"
852
+ },
853
+ "limit": {
854
+ "type": "number"
855
+ },
856
+ "includePrices": {
857
+ "type": "boolean"
858
+ },
859
+ "verbose": {
860
+ "type": "boolean",
861
+ "description": "Return full uncompacted response. Default false returns a compact, agent-friendly summary."
862
+ }
863
+ },
864
+ "required": [
865
+ "exchange"
866
+ ]
867
+ },
868
+ "annotations": {
869
+ "readOnlyHint": true
870
+ },
871
+ "method": "fetchEventMatches",
872
+ "args": [
873
+ {
874
+ "name": "params",
875
+ "kind": "object",
876
+ "optional": false,
877
+ "flatten": true
878
+ }
879
+ ]
880
+ },
698
881
  {
699
882
  "name": "fetchEvents",
700
883
  "description": "Fetch events with optional keyword search. Events group related markets together (e.g., \"Who will be Fed Chair?\" contains multiple candidate markets).",
@@ -714,7 +897,8 @@ export const TOOLS = [
714
897
  "opinion",
715
898
  "metaculus",
716
899
  "smarkets",
717
- "polymarket_us"
900
+ "polymarket_us",
901
+ "router"
718
902
  ],
719
903
  "description": "The prediction market exchange to target."
720
904
  },
@@ -807,6 +991,80 @@ export const TOOLS = [
807
991
  }
808
992
  ]
809
993
  },
994
+ {
995
+ "name": "fetchHedges",
996
+ "description": "Find hedging opportunities via subset/superset matches across venues.",
997
+ "inputSchema": {
998
+ "type": "object",
999
+ "properties": {
1000
+ "exchange": {
1001
+ "type": "string",
1002
+ "enum": [
1003
+ "polymarket",
1004
+ "kalshi",
1005
+ "kalshi-demo",
1006
+ "limitless",
1007
+ "probable",
1008
+ "baozi",
1009
+ "myriad",
1010
+ "opinion",
1011
+ "metaculus",
1012
+ "smarkets",
1013
+ "polymarket_us",
1014
+ "router"
1015
+ ],
1016
+ "description": "The prediction market exchange to target."
1017
+ },
1018
+ "marketId": {
1019
+ "type": "string"
1020
+ },
1021
+ "slug": {
1022
+ "type": "string"
1023
+ },
1024
+ "url": {
1025
+ "type": "string"
1026
+ },
1027
+ "relation": {
1028
+ "type": "string",
1029
+ "enum": [
1030
+ "identity",
1031
+ "subset",
1032
+ "superset",
1033
+ "overlap",
1034
+ "disjoint"
1035
+ ]
1036
+ },
1037
+ "minConfidence": {
1038
+ "type": "number"
1039
+ },
1040
+ "limit": {
1041
+ "type": "number"
1042
+ },
1043
+ "includePrices": {
1044
+ "type": "boolean"
1045
+ },
1046
+ "verbose": {
1047
+ "type": "boolean",
1048
+ "description": "Return full uncompacted response. Default false returns a compact, agent-friendly summary."
1049
+ }
1050
+ },
1051
+ "required": [
1052
+ "exchange"
1053
+ ]
1054
+ },
1055
+ "annotations": {
1056
+ "readOnlyHint": true
1057
+ },
1058
+ "method": "fetchHedges",
1059
+ "args": [
1060
+ {
1061
+ "name": "params",
1062
+ "kind": "object",
1063
+ "optional": false,
1064
+ "flatten": true
1065
+ }
1066
+ ]
1067
+ },
810
1068
  {
811
1069
  "name": "fetchMarket",
812
1070
  "description": "Fetch a single market by lookup parameters. Convenience wrapper around fetchMarkets() that returns a single result or throws MarketNotFound.",
@@ -826,7 +1084,8 @@ export const TOOLS = [
826
1084
  "opinion",
827
1085
  "metaculus",
828
1086
  "smarkets",
829
- "polymarket_us"
1087
+ "polymarket_us",
1088
+ "router"
830
1089
  ],
831
1090
  "description": "The prediction market exchange to target."
832
1091
  },
@@ -935,7 +1194,8 @@ export const TOOLS = [
935
1194
  "opinion",
936
1195
  "metaculus",
937
1196
  "smarkets",
938
- "polymarket_us"
1197
+ "polymarket_us",
1198
+ "router"
939
1199
  ],
940
1200
  "description": "The prediction market exchange to target."
941
1201
  },
@@ -1044,7 +1304,8 @@ export const TOOLS = [
1044
1304
  "opinion",
1045
1305
  "metaculus",
1046
1306
  "smarkets",
1047
- "polymarket_us"
1307
+ "polymarket_us",
1308
+ "router"
1048
1309
  ],
1049
1310
  "description": "The prediction market exchange to target."
1050
1311
  },
@@ -1079,6 +1340,80 @@ export const TOOLS = [
1079
1340
  }
1080
1341
  ]
1081
1342
  },
1343
+ {
1344
+ "name": "fetchMatches",
1345
+ "description": "Fetch cross-venue matches for a given market.",
1346
+ "inputSchema": {
1347
+ "type": "object",
1348
+ "properties": {
1349
+ "exchange": {
1350
+ "type": "string",
1351
+ "enum": [
1352
+ "polymarket",
1353
+ "kalshi",
1354
+ "kalshi-demo",
1355
+ "limitless",
1356
+ "probable",
1357
+ "baozi",
1358
+ "myriad",
1359
+ "opinion",
1360
+ "metaculus",
1361
+ "smarkets",
1362
+ "polymarket_us",
1363
+ "router"
1364
+ ],
1365
+ "description": "The prediction market exchange to target."
1366
+ },
1367
+ "marketId": {
1368
+ "type": "string"
1369
+ },
1370
+ "slug": {
1371
+ "type": "string"
1372
+ },
1373
+ "url": {
1374
+ "type": "string"
1375
+ },
1376
+ "relation": {
1377
+ "type": "string",
1378
+ "enum": [
1379
+ "identity",
1380
+ "subset",
1381
+ "superset",
1382
+ "overlap",
1383
+ "disjoint"
1384
+ ]
1385
+ },
1386
+ "minConfidence": {
1387
+ "type": "number"
1388
+ },
1389
+ "limit": {
1390
+ "type": "number"
1391
+ },
1392
+ "includePrices": {
1393
+ "type": "boolean"
1394
+ },
1395
+ "verbose": {
1396
+ "type": "boolean",
1397
+ "description": "Return full uncompacted response. Default false returns a compact, agent-friendly summary."
1398
+ }
1399
+ },
1400
+ "required": [
1401
+ "exchange"
1402
+ ]
1403
+ },
1404
+ "annotations": {
1405
+ "readOnlyHint": true
1406
+ },
1407
+ "method": "fetchMatches",
1408
+ "args": [
1409
+ {
1410
+ "name": "params",
1411
+ "kind": "object",
1412
+ "optional": false,
1413
+ "flatten": true
1414
+ }
1415
+ ]
1416
+ },
1082
1417
  {
1083
1418
  "name": "fetchMyTrades",
1084
1419
  "description": "Fetch My Trades",
@@ -1098,7 +1433,8 @@ export const TOOLS = [
1098
1433
  "opinion",
1099
1434
  "metaculus",
1100
1435
  "smarkets",
1101
- "polymarket_us"
1436
+ "polymarket_us",
1437
+ "router"
1102
1438
  ],
1103
1439
  "description": "The prediction market exchange to target."
1104
1440
  },
@@ -1196,7 +1532,8 @@ export const TOOLS = [
1196
1532
  "opinion",
1197
1533
  "metaculus",
1198
1534
  "smarkets",
1199
- "polymarket_us"
1535
+ "polymarket_us",
1536
+ "router"
1200
1537
  ],
1201
1538
  "description": "The prediction market exchange to target."
1202
1539
  },
@@ -1277,7 +1614,8 @@ export const TOOLS = [
1277
1614
  "opinion",
1278
1615
  "metaculus",
1279
1616
  "smarkets",
1280
- "polymarket_us"
1617
+ "polymarket_us",
1618
+ "router"
1281
1619
  ],
1282
1620
  "description": "The prediction market exchange to target."
1283
1621
  },
@@ -1352,7 +1690,8 @@ export const TOOLS = [
1352
1690
  "opinion",
1353
1691
  "metaculus",
1354
1692
  "smarkets",
1355
- "polymarket_us"
1693
+ "polymarket_us",
1694
+ "router"
1356
1695
  ],
1357
1696
  "description": "The prediction market exchange to target."
1358
1697
  },
@@ -1428,7 +1767,8 @@ export const TOOLS = [
1428
1767
  "opinion",
1429
1768
  "metaculus",
1430
1769
  "smarkets",
1431
- "polymarket_us"
1770
+ "polymarket_us",
1771
+ "router"
1432
1772
  ],
1433
1773
  "description": "The prediction market exchange to target."
1434
1774
  },
@@ -1477,7 +1817,8 @@ export const TOOLS = [
1477
1817
  "opinion",
1478
1818
  "metaculus",
1479
1819
  "smarkets",
1480
- "polymarket_us"
1820
+ "polymarket_us",
1821
+ "router"
1481
1822
  ],
1482
1823
  "description": "The prediction market exchange to target."
1483
1824
  },
@@ -1552,7 +1893,8 @@ export const TOOLS = [
1552
1893
  "opinion",
1553
1894
  "metaculus",
1554
1895
  "smarkets",
1555
- "polymarket_us"
1896
+ "polymarket_us",
1897
+ "router"
1556
1898
  ],
1557
1899
  "description": "The prediction market exchange to target."
1558
1900
  },
@@ -1621,7 +1963,8 @@ export const TOOLS = [
1621
1963
  "opinion",
1622
1964
  "metaculus",
1623
1965
  "smarkets",
1624
- "polymarket_us"
1966
+ "polymarket_us",
1967
+ "router"
1625
1968
  ],
1626
1969
  "description": "The prediction market exchange to target."
1627
1970
  },
@@ -1726,7 +2069,8 @@ export const TOOLS = [
1726
2069
  "opinion",
1727
2070
  "metaculus",
1728
2071
  "smarkets",
1729
- "polymarket_us"
2072
+ "polymarket_us",
2073
+ "router"
1730
2074
  ],
1731
2075
  "description": "The prediction market exchange to target."
1732
2076
  },
@@ -1831,7 +2175,8 @@ export const TOOLS = [
1831
2175
  "opinion",
1832
2176
  "metaculus",
1833
2177
  "smarkets",
1834
- "polymarket_us"
2178
+ "polymarket_us",
2179
+ "router"
1835
2180
  ],
1836
2181
  "description": "The prediction market exchange to target."
1837
2182
  },
@@ -1907,7 +2252,8 @@ export const TOOLS = [
1907
2252
  "opinion",
1908
2253
  "metaculus",
1909
2254
  "smarkets",
1910
- "polymarket_us"
2255
+ "polymarket_us",
2256
+ "router"
1911
2257
  ],
1912
2258
  "description": "The prediction market exchange to target."
1913
2259
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pmxt/mcp",
3
- "version": "2.32.4",
3
+ "version": "2.33.1",
4
4
  "description": "MCP server for PMXT - the unified prediction market API",
5
5
  "type": "module",
6
6
  "bin": {