Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"boostspace-mcp-server": {
"args": [
"boostspace-mcp"
],
"command": "uvx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server proxying Boost.Space’s REST API for MCP clients (e.g., Claude Desktop).
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
uvx 'boostspace-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked boostspace-mcp against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in productivity
Persistent memory using a knowledge graph
Dynamic problem-solving through sequential thought chains
mini cli search engine for your docs, knowledge bases, meeting notes, whatever. Tracking current sota approaches while being all local
Official Miro MCP server - Supports context to code and creating diagrams, docs, and data tables.
MCP Security Weekly
Get CVE alerts and security updates for Boostspace Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
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 .