Turbocharge your
Vibe Coding
with Automated Issue Tracking

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 Started
SpaceBridge Diagram
Similarity Icon

Smart Duplicate Detection

Intelligent similarity search finds and prevents duplicate issues, even when terminology varies.

Context Icon

Augment your LLM context

Seamless issue data access that supercharges your AI tools' effectiveness

IDE Icon

Cursor, Windsurf, Claude Code Ready

Streamlined setup process. Use with any agentic system that supports MCP.

Get Started

Install SpaceBridge for Claude Code

Prerequisites
  • Python 3.9+ installed
  • SpaceBridge API key (register above)
  • OpenAI API key for similarity search
Installation

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"

Install SpaceBridge for Cursor

Prerequisites
  • Python 3.9+ installed
  • SpaceBridge API key (register above)
  • OpenAI API key for similarity search
Installation

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:

  • Settings > Model Context Protocol > Add MCP Server
  • Select "Add stdio Server" and enter SpaceBridge details
  • Add the required environment variables

Install SpaceBridge for Windsurf

Prerequisites
  • Python 3.9+ installed
  • SpaceBridge API key (register above)
  • OpenAI API key for similarity search
Installation

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"
      }
    }
  }
}
Usage Examples

Once configured, you can use SpaceBridge in any MCP-enabled IDE with prompts like:

  • "Find issues related to authentication bugs"
  • "Create a new issue for the login page crash I found"
  • "Link this function to issue #123"
  • "Search for duplicates of this issue across my repositories"