mcp for VS Code
io.github.hummingbot/mcp
MCP server exposing Hummingbot API for automated multi-exchange trading
client:VS Code
transport:stdio
runtime:oci
Install mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "hummingbot-api-url",
"description": "HUMMINGBOT_API_URL",
"password": true
},
{
"type": "promptString",
"id": "hummingbot-username",
"description": "HUMMINGBOT_USERNAME",
"password": true
},
{
"type": "promptString",
"id": "hummingbot-password",
"description": "HUMMINGBOT_PASSWORD",
"password": true
}
],
"servers": {
"mcp": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"docker.io/hummingbot/hummingbot-mcp:0.1.0"
],
"env": {
"HUMMINGBOT_API_URL": "${input:hummingbot-api-url}",
"HUMMINGBOT_USERNAME": "${input:hummingbot-username}",
"HUMMINGBOT_PASSWORD": "${input:hummingbot-password}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs