AgentHubAgentHub

mcp

MCP ServerMCP Registry官方收录

io.github.hummingbot/mcp · v0.1.0

MCP server exposing Hummingbot API for automated multi-exchange trading

概览

mcp 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "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>"
      }
    }
  }
}

环境变量

HUMMINGBOT_API_URL必填

Base URL of the Hummingbot API (e.g., http://host.docker.internal:8820 or http://localhost:8000)

HUMMINGBOT_USERNAME必填secret

Hummingbot API username

HUMMINGBOT_PASSWORD必填secret

Hummingbot API password

相关资源

统一 Manifest

{
  "id": "io.github.hummingbot/mcp",
  "type": "mcp-server",
  "version": "0.1.0",
  "displayName": "mcp",
  "description": "MCP server exposing Hummingbot API for automated multi-exchange trading",
  "repository": {
    "url": "https://github.com/hummingbot/mcp",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "oci",
        "identifier": "docker.io/hummingbot/hummingbot-mcp:0.1.0",
        "transport": "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
          },
          {
            "name": "HUMMINGBOT_USERNAME",
            "description": "Hummingbot API username",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "HUMMINGBOT_PASSWORD",
            "description": "Hummingbot API password",
            "isRequired": true,
            "isSecret": true
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.hummingbot/mcp",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.hummingbot%2Fmcp/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
mcp — MCP Server 安装与配置 · AgentHub