trackmcp
Back to directory
boostspace

boostspace-mcp-server

View on GitHub

Boost.space MCP server

4 stars PythonServers & Infrastructure Updated Sep 27, 2025

Documentation

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:

bash
pip install boostspace-mcp

uv:

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

Run

bash
# pip
python -m boostspace_mcp.server

# uv
uv x boostspace-mcp run

Claude Desktop config

jsonc
"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

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

Frequently asked questions

What is boostspace-mcp-server?

boostspace-mcp-server is Boost.space MCP server

How do I install boostspace-mcp-server?

Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.

Is boostspace-mcp-server open source?

Yes — it is hosted on GitHub at https://github.com/boostspace/boostspace-mcp-server and has 4 stars.

Related MCP tools

Run your own MCP server? See who uses it and what to fix.

Measure it with TrackMCP