📦
Boost.space
Boost.space MCP server
0 installs
6 stars
1 forks
Trust: 52 — Fair
Devtools
Installation
npx boostspace-mcp-serverAsk AI about Boost.space
Powered by Claude · Grounded in docs
I know everything about Boost.space. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Loading tools...
Reviews
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:
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 URLBOOSTSPACE_TOKEN: Bearer token
Test & dev
pip install .[dev]
pytest -q
ruff check .
