by boostspace
Proxies Boost.Space’s REST API for Model Context Protocol (MCP) clients, enabling seamless communication with tools such as Claude Desktop.
Boost Space MCP Server provides a lightweight proxy that translates MCP client requests into calls against Boost.Space’s REST API. It allows MCP‑compatible applications (e.g., Claude Desktop) to interact with Boost.Space without dealing directly with HTTP details.
pip install boostspace-mcp # or uv add boostspace-mcp
# via pip
python -m boostspace_mcp.server
# via uv
uv x boostspace-mcp run
python -m boostspace_mcp.server
).stdio
transport.pip
or uv
.pytest
) and linting (ruff
).Q: Which environment variables are required?
A: BOOSTSPACE_API_BASE
(the API endpoint) and BOOSTSPACE_TOKEN
(Bearer token).
Q: Can I run the server in the background?
A: Yes; start it as a regular Python process or use a process manager (e.g., systemd
, pm2
for Node wrappers).
Q: Is there a Docker image available? A: The repository does not ship a Dockerfile, but you can containerize it by installing the package in a Python base image.
Q: How do I contribute?
A: Install development extras (pip install .[dev]
), run tests with pytest -q
, and lint with ruff check .
.
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 .
Please log in to share your review and rating for this MCP.
{ "mcpServers": { "boostspace": { "command": "python", "args": [ "-m", "boostspace_mcp.server" ], "env": { "BOOSTSPACE_API_BASE": "<API_BASE_URL>", "BOOSTSPACE_TOKEN": "<BEARER_TOKEN>" } } } }
Explore related MCPs that share similar capabilities and solve comparable challenges
by zed-industries
A high‑performance, multiplayer code editor designed for speed and collaboration.
by modelcontextprotocol
Model Context Protocol Servers
by modelcontextprotocol
A Model Context Protocol server for Git repository interaction and automation.
by modelcontextprotocol
A Model Context Protocol server that provides time and timezone conversion capabilities.
by cline
An autonomous coding assistant that can create and edit files, execute terminal commands, and interact with a browser directly from your IDE, operating step‑by‑step with explicit user permission.
by continuedev
Enables faster shipping of code by integrating continuous AI agents across IDEs, terminals, and CI pipelines, offering chat, edit, autocomplete, and customizable agent workflows.
by upstash
Provides up-to-date, version‑specific library documentation and code examples directly inside LLM prompts, eliminating outdated information and hallucinated APIs.
by github
Connects AI tools directly to GitHub, enabling natural‑language interactions for repository browsing, issue and pull‑request management, CI/CD monitoring, code‑security analysis, and team collaboration.
by daytonaio
Provides a secure, elastic infrastructure that creates isolated sandboxes for running AI‑generated code with sub‑90 ms startup, unlimited persistence, and OCI/Docker compatibility.