SpaceBridge provides an open source MCP server and a free REST API that can keep your issue tracker updated while you focus on coding.
Get StartedIntelligent similarity search finds and prevents duplicate issues, even when terminology varies.
Seamless issue data access that supercharges your AI tools' effectiveness
Streamlined setup process. Use with any agentic system that supports MCP.
Install SpaceBridge package and add it to Claude Code:
# First install the package
pip install spacebridge-mcp
# Then add to Claude Code
claude mcp add spacebridge $(which spacebridge-mcp-server) \
--scope user \
--env SPACEBRIDGE_API_URL="YOUR_URL" \
--env SPACEBRIDGE_API_KEY="YOUR_KEY" \
--env OPENAI_API_KEY="YOUR_OPENAI_KEY"
First, install the SpaceBridge package:
pip install spacebridge-mcp
Then configure via JSON file:
# Create or edit ~/.cursor/mcp.json
{
"mcpServers": {
"spacebridge": {
"command": "$(which spacebridge-mcp-server)",
"env": {
"SPACEBRIDGE_API_URL": "YOUR_URL",
"SPACEBRIDGE_API_KEY": "YOUR_KEY",
"OPENAI_API_KEY": "YOUR_OPENAI_KEY"
}
}
}
}
Or via Settings UI:
First, install the SpaceBridge package:
pip install spacebridge-mcp
Then configure via JSON configuration file:
{
"mcpServers": {
"spacebridge": {
"command": "/full/path/to/spacebridge-mcp-server",
"args": [],
"env": {
"SPACEBRIDGE_API_URL": "YOUR_URL",
"SPACEBRIDGE_API_KEY": "YOUR_KEY",
"OPENAI_API_KEY": "YOUR_OPENAI_KEY"
}
}
}
}
Once configured, you can use SpaceBridge in any MCP-enabled IDE with prompts like: