home / mcp / boost.space mcp server
Proxies Boost.Space’s REST API for MCP clients, enabling local development and integration with MCP-based tools.
Configuration
View docs{
"mcpServers": {
"boostspace-boostspace-mcp-server": {
"command": "python",
"args": [
"-m",
"boostspace_mcp.server"
],
"env": {
"BOOSTSPACE_TOKEN": "{{TOKEN}}",
"BOOSTSPACE_API_BASE": "{{API_PATH}}"
}
}
}
}You set up a local MCP server that proxies Boost.Space’s REST API so MCP clients can access Boost.Space data and actions. This server lets you run locally or via a runtime tool, and you configure your MCP client to point at it, making it easy to test, develop, and integrate Boost.Space capabilities into your workflows.
You run the MCP server locally and point your MCP client at it. The server exposes the Boost.Space REST API to MCP clients, so you can perform data queries and actions through your chosen client while keeping credentials and API access centralized.
To start the server in your environment, use one of the supported runtime methods and ensure you provide the required environment variables for authentication and API routing.
Prerequisites: you need Python installed on your system. You also have an alternative runtime option using the uv tool.
# Install via Python package manager
pip install boostspace-mcp
# Start the server using Python
python -m boostspace_mcp.server
# Alternative: start the server using uv
# Install uv if needed and add the MCP server via uv
curl -LsSf https://astral.sh/uv/install.sh | sh
uv add boostspace-mcp
uv x boostspace-mcp runConfigure your MCP client to launch the server and provide the necessary credentials through environment variables.
"mcpServers": {
"boostspace": {
"command": "python",
"args": ["-m","boostspace_mcp.server"],
"env": {
"BOOSTSPACE_API_BASE": "{{API_PATH}}",
"BOOSTSPACE_TOKEN": "{{TOKEN}}"
},
"transport": "stdio"
}
}Two environment variables control access and routing for the server.
- BOOSTSPACE_API_BASE: API base URL - BOOSTSPACE_TOKEN: Bearer token
For development and testing you can install development dependencies and run tests to verify the MCP server behavior.
pip install .[dev]
pytest -q
ruff check .