boostspace-mcp-server

boostspace/boostspace-mcp-server

3.3

If you are the rightful owner of boostspace-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

Boost.space MCP server acts as a proxy for Boost.Space’s REST API, facilitating communication between MCP clients like Claude Desktop and the API.

Boost.space MCP server

A Model Context Protocol (MCP) server proxying Boost.Space’s REST API for MCP clients (e.g., Claude Desktop).

Install

pip:

pip install boostspace-mcp

uv:

curl -LsSf https://astral.sh/uv/install.sh | sh
uv add boostspace-mcp

Run

# pip
python -m boostspace_mcp.server

# uv
uv x boostspace-mcp run

Claude Desktop config

"mcpServers": {
  "boostspace": {
    "command": "python",
    "args": ["-m","boostspace_mcp.server"],
    "env": {
      "BOOSTSPACE_API_BASE": "{{API_PATH}}",
      "BOOSTSPACE_TOKEN": "{{TOKEN}}"
    },
    "transport": "stdio"
  }
}

Restart Claude Desktop.

Env vars

  • BOOSTSPACE_API_BASE: API base URL
  • BOOSTSPACE_TOKEN: Bearer token

Test & dev

pip install .[dev]
pytest -q
ruff check .