mcp for Gemini CLI
io.github.hummingbot/mcp
MCP server exposing Hummingbot API for automated multi-exchange trading
client:Gemini CLI
transport:stdio
runtime:oci
Install mcp in Gemini CLI
~/.gemini/settings.json · windows: %USERPROFILE%\.gemini\settings.json
{
"mcpServers": {
"mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"docker.io/hummingbot/hummingbot-mcp:0.1.0"
],
"env": {
"HUMMINGBOT_API_URL": "<HUMMINGBOT_API_URL>",
"HUMMINGBOT_USERNAME": "<HUMMINGBOT_USERNAME>",
"HUMMINGBOT_PASSWORD": "<HUMMINGBOT_PASSWORD>"
}
}
}
}
Gemini expands $VAR and ${VAR} inside env values, so a secret can live in your shell rather than this file. Gemini CLI docs