@pmxt/mcp 2.33.5 → 2.34.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.
@@ -831,6 +831,14 @@ export const TOOLS = [
831
831
  ],
832
832
  "description": "The prediction market exchange to target."
833
833
  },
834
+ "event": {
835
+ "allOf": [
836
+ {
837
+ "$ref": "#/components/schemas/UnifiedEvent"
838
+ }
839
+ ],
840
+ "description": "Pass a UnifiedEvent directly instead of eventId/slug."
841
+ },
834
842
  "eventId": {
835
843
  "type": "string"
836
844
  },
@@ -1015,6 +1023,14 @@ export const TOOLS = [
1015
1023
  ],
1016
1024
  "description": "The prediction market exchange to target."
1017
1025
  },
1026
+ "market": {
1027
+ "allOf": [
1028
+ {
1029
+ "$ref": "#/components/schemas/UnifiedMarket"
1030
+ }
1031
+ ],
1032
+ "description": "Pass a UnifiedMarket directly instead of marketId/slug/url."
1033
+ },
1018
1034
  "marketId": {
1019
1035
  "type": "string"
1020
1036
  },
@@ -1175,6 +1191,88 @@ export const TOOLS = [
1175
1191
  }
1176
1192
  ]
1177
1193
  },
1194
+ {
1195
+ "name": "fetchMarketMatches",
1196
+ "description": "Find the same or related market on other venues. Given a market on one venue, discover semantically equivalent markets across every other venue PMXT ingests — each with a relation type (identity, subset, superset, overlap, disjoint), confidence score, and reasoning.",
1197
+ "inputSchema": {
1198
+ "type": "object",
1199
+ "properties": {
1200
+ "exchange": {
1201
+ "type": "string",
1202
+ "enum": [
1203
+ "polymarket",
1204
+ "kalshi",
1205
+ "kalshi-demo",
1206
+ "limitless",
1207
+ "probable",
1208
+ "baozi",
1209
+ "myriad",
1210
+ "opinion",
1211
+ "metaculus",
1212
+ "smarkets",
1213
+ "polymarket_us",
1214
+ "router"
1215
+ ],
1216
+ "description": "The prediction market exchange to target."
1217
+ },
1218
+ "market": {
1219
+ "allOf": [
1220
+ {
1221
+ "$ref": "#/components/schemas/UnifiedMarket"
1222
+ }
1223
+ ],
1224
+ "description": "Pass a UnifiedMarket directly instead of marketId/slug/url."
1225
+ },
1226
+ "marketId": {
1227
+ "type": "string"
1228
+ },
1229
+ "slug": {
1230
+ "type": "string"
1231
+ },
1232
+ "url": {
1233
+ "type": "string"
1234
+ },
1235
+ "relation": {
1236
+ "type": "string",
1237
+ "enum": [
1238
+ "identity",
1239
+ "subset",
1240
+ "superset",
1241
+ "overlap",
1242
+ "disjoint"
1243
+ ]
1244
+ },
1245
+ "minConfidence": {
1246
+ "type": "number"
1247
+ },
1248
+ "limit": {
1249
+ "type": "number"
1250
+ },
1251
+ "includePrices": {
1252
+ "type": "boolean"
1253
+ },
1254
+ "verbose": {
1255
+ "type": "boolean",
1256
+ "description": "Return full uncompacted response. Default false returns a compact, agent-friendly summary."
1257
+ }
1258
+ },
1259
+ "required": [
1260
+ "exchange"
1261
+ ]
1262
+ },
1263
+ "annotations": {
1264
+ "readOnlyHint": true
1265
+ },
1266
+ "method": "fetchMarketMatches",
1267
+ "args": [
1268
+ {
1269
+ "name": "params",
1270
+ "kind": "object",
1271
+ "optional": false,
1272
+ "flatten": true
1273
+ }
1274
+ ]
1275
+ },
1178
1276
  {
1179
1277
  "name": "fetchMarkets",
1180
1278
  "description": "Fetch markets with optional filtering, search, or slug lookup. Always hits the exchange API — results reflect the live state at the time of the call.",
@@ -1342,7 +1440,7 @@ export const TOOLS = [
1342
1440
  },
1343
1441
  {
1344
1442
  "name": "fetchMatches",
1345
- "description": "Find the same or related market on other venues. Given a market on one venue, discover semantically equivalent markets across every other venue PMXT ingests — each with a relation type (identity, subset, superset, overlap, disjoint), confidence score, and reasoning.",
1443
+ "description": "Find Similar Markets (Deprecated)",
1346
1444
  "inputSchema": {
1347
1445
  "type": "object",
1348
1446
  "properties": {
@@ -1364,6 +1462,14 @@ export const TOOLS = [
1364
1462
  ],
1365
1463
  "description": "The prediction market exchange to target."
1366
1464
  },
1465
+ "market": {
1466
+ "allOf": [
1467
+ {
1468
+ "$ref": "#/components/schemas/UnifiedMarket"
1469
+ }
1470
+ ],
1471
+ "description": "Pass a UnifiedMarket directly instead of marketId/slug/url."
1472
+ },
1367
1473
  "marketId": {
1368
1474
  "type": "string"
1369
1475
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pmxt/mcp",
3
- "version": "2.33.5",
3
+ "version": "2.34.0",
4
4
  "description": "MCP server for PMXT - the unified prediction market API",
5
5
  "type": "module",
6
6
  "bin": {