Integrations

Works with every AI coding agent.

Connect Loop to any MCP-compatible agent in seconds. One server, every tool — no configuration required.

npx add-mcp https://mcp.looped.me/mcp
Cursor

Cursor

Add to Cursor

Or configure manually:

.mcp.json
{
  "mcpServers": {
    "loop": {
      "url": "https://mcp.looped.me/mcp"
    }
  }
}

VS Code

Add to VS Code

Or configure manually:

.mcp.json
{
  "mcpServers": {
    "loop": {
      "url": "https://mcp.looped.me/mcp"
    }
  }
}
Claude

Claude Code

$
claude mcp add --transport http loop https://mcp.looped.me/mcp

Or configure manually:

.mcp.json
{
  "mcpServers": {
    "loop": {
      "url": "https://mcp.looped.me/mcp"
    }
  }
}
Windsurf

Windsurf

.mcp.json
{
  "mcpServers": {
    "loop": {
      "url": "https://mcp.looped.me/mcp"
    }
  }
}

Codex CLI

.mcp.json
{
  "mcpServers": {
    "loop": {
      "url": "https://mcp.looped.me/mcp"
    }
  }
}

OpenHands

.mcp.json
{
  "mcpServers": {
    "loop": {
      "url": "https://mcp.looped.me/mcp"
    }
  }
}

Goose

.mcp.json
{
  "mcpServers": {
    "loop": {
      "url": "https://mcp.looped.me/mcp"
    }
  }
}
Google Gemini

Gemini CLI

.mcp.json
{
  "mcpServers": {
    "loop": {
      "url": "https://mcp.looped.me/mcp"
    }
  }
}
Code examples

Call the Loop API directly.

# Get the next priority task for your agent
curl -X GET https://your-loop.com/api/dispatch/next \
  -H "Authorization: Bearer tok_your_api_key"

# Create an issue from a signal
curl -X POST https://your-loop.com/api/issues \
  -H "Authorization: Bearer tok_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "title": "Sign-up conversion dropped 12%",
    "type": "signal",
    "priority": "high"
  }'