by boostspace
Provides an MCP server that proxies Boost.Space’s REST API, enabling MCP‑compatible clients such as Claude Desktop to access Boost.Space resources through a standard Model Context Protocol interface.
Boost Space MCP Server acts as a bridge between Boost.Space’s REST endpoints and clients that speak the Model Context Protocol (MCP). By running a local proxy, MCP clients can issue familiar requests while the server translates them into authenticated REST calls to Boost.Space.
pip install boostspace-mcp
) or uv (uv add boostspace-mcp
).python -m boostspace_mcp.server
(or uv x boostspace-mcp run
).BOOSTSPACE_API_BASE
(the API base URL) and BOOSTSPACE_TOKEN
(Bearer token). In Claude Desktop, add an MCP server entry pointing to the command above.Q: Do I need a special token?
A: Yes, a Bearer token for Boost.Space is required and should be supplied via the BOOSTSPACE_TOKEN
environment variable.
Q: Can I run the server behind a reverse proxy? A: The server communicates over STDIO, so it is typically launched directly by the client. For HTTP‑based transport you would need to wrap it yourself.
Q: Which transport protocols are supported?
A: The default configuration uses stdio
, which is compatible with Claude Desktop and similar MCP clients.
Q: How do I run tests or develop locally?
A: Install development extras with pip install .[dev]
and run pytest -q
. Code style can be checked 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": "<YOUR_API_BASE_URL>", "BOOSTSPACE_TOKEN": "<YOUR_BEARER_TOKEN>" } } } }
Discover more MCP servers with similar functionality and use cases
by danny-avila
Provides a customizable ChatGPT‑like web UI that integrates dozens of AI models, agents, code execution, image generation, web search, speech capabilities, and secure multi‑user authentication, all open‑source and ready for self‑hosting.
by ahujasid
BlenderMCP integrates Blender with Claude AI via the Model Context Protocol (MCP), enabling AI-driven 3D scene creation, modeling, and manipulation. This project allows users to control Blender directly through natural language prompts, streamlining the 3D design workflow.
by pydantic
Enables building production‑grade generative AI applications using Pydantic validation, offering a FastAPI‑like developer experience.
by GLips
Figma-Context-MCP is a Model Context Protocol (MCP) server that provides Figma layout information to AI coding agents. It bridges design and development by enabling AI tools to directly access and interpret Figma design data for more accurate and efficient code generation.
by mcp-use
Easily create and interact with MCP servers using custom agents, supporting any LLM with tool calling and offering multi‑server, sandboxed, and streaming capabilities.
by sonnylazuardi
This project implements a Model Context Protocol (MCP) integration between Cursor AI and Figma, allowing Cursor to communicate with Figma for reading designs and modifying them programmatically.
by lharries
WhatsApp MCP Server is a Model Context Protocol (MCP) server for WhatsApp that allows users to search, read, and send WhatsApp messages (including media) through AI models like Claude. It connects directly to your personal WhatsApp account via the WhatsApp web multi-device API and stores messages locally in a SQLite database.
by idosal
GitMCP is a free, open-source remote Model Context Protocol (MCP) server that transforms any GitHub project into a documentation hub, enabling AI tools to access up-to-date documentation and code directly from the source to eliminate "code hallucinations."
by Klavis-AI
Klavis AI provides open-source Multi-platform Control Protocol (MCP) integrations and a hosted API for AI applications. It simplifies connecting AI to various third-party services by managing secure MCP servers and authentication.