-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathserver.json
More file actions
42 lines (42 loc) · 1.25 KB
/
server.json
File metadata and controls
42 lines (42 loc) · 1.25 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-09-29/server.schema.json",
"name": "io.github.hummingbot/mcp",
"description": "MCP server exposing Hummingbot API for automated multi-exchange trading",
"repository": {
"url": "https://github.com/hummingbot/mcp",
"source": "github"
},
"version": "1.0.4",
"packages": [
{
"registryType": "oci",
"registryBaseUrl": "https://docker.io",
"identifier": "hummingbot/hummingbot-mcp",
"version": "1.0.4",
"transport": { "type": "stdio" },
"environmentVariables": [
{
"name": "HUMMINGBOT_API_URL",
"description": "Base URL of the Hummingbot API (e.g., http://host.docker.internal:8820 or http://localhost:8000)",
"isRequired": true,
"format": "string",
"isSecret": false
},
{
"name": "HUMMINGBOT_USERNAME",
"description": "Hummingbot API username",
"isRequired": true,
"format": "string",
"isSecret": true
},
{
"name": "HUMMINGBOT_PASSWORD",
"description": "Hummingbot API password",
"isRequired": true,
"format": "string",
"isSecret": true
}
]
}
]
}