An MCP server integrating with Boost.space for centralized, automated business data from 2000+ sources.
A Model Context Protocol (MCP) server proxying Boost.Space’s REST API for MCP clients (e.g., Claude Desktop).
pip:
pip install boostspace-mcp
uv:
curl -LsSf https://astral.sh/uv/install.sh | sh
uv add boostspace-mcp
# pip
python -m boostspace_mcp.server
# uv
uv x boostspace-mcp run
"mcpServers": {
"boostspace": {
"command": "python",
"args": ["-m","boostspace_mcp.server"],
"env": {
"BOOSTSPACE_API_BASE": "{{API_PATH}}",
"BOOSTSPACE_TOKEN": "{{TOKEN}}"
},
"transport": "stdio"
}
}
Restart Claude Desktop.
BOOSTSPACE_API_BASE
: API base URLBOOSTSPACE_TOKEN
: Bearer tokenpip install .[dev]
pytest -q
ruff check .