-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmcp.json
More file actions
65 lines (65 loc) · 1.77 KB
/
mcp.json
File metadata and controls
65 lines (65 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "APIbase",
"description": "The API Hub for AI Agents — 33 tools across prediction markets, flights, travel, and DeFi. One MCP endpoint, pay-per-call via x402.",
"protocol": "MCP",
"protocol_version": "2025-03-26",
"transport": "streamable-http",
"server_version": "1.0.0",
"mcp_endpoint": "https://apibase.pro/mcp",
"smithery": "https://smithery.ai/servers/apibase-pro/api-hub",
"tools_catalog": "https://apibase.pro/api/v1/tools",
"documentation": "https://apibase.pro/ai.txt",
"discovery": "https://apibase.pro/.well-known/mcp.json",
"health": "https://apibase.pro/health/ready",
"status": "active",
"authentication": {
"type": "bearer",
"header": "Authorization",
"format": "Bearer ak_live_<key>",
"auto_registration": true,
"payment": "x402 (USDC on Base)"
},
"capabilities": {
"tools": true,
"resources": false,
"prompts": false
},
"providers": [
{
"name": "Polymarket",
"category": "prediction-markets",
"tools": 12,
"prefix": "polymarket.*"
},
{
"name": "Amadeus",
"category": "travel",
"tools": 7,
"prefix": "amadeus.*"
},
{
"name": "Sabre GDS",
"category": "travel",
"tools": 4,
"prefix": "sabre.*"
},
{
"name": "Hyperliquid",
"category": "defi",
"tools": 6,
"prefix": "hyperliquid.*"
},
{
"name": "AsterDEX",
"category": "defi",
"tools": 4,
"prefix": "aster.*"
}
],
"quick_start": {
"1_connect": "POST https://apibase.pro/mcp with JSON-RPC initialize",
"2_authenticate": "Set Authorization: Bearer <your_api_key>",
"3_discover": "Call tools/list to see all 33 available tools",
"4_use": "Call tools/call with tool name and arguments"
}
}