SiegfriedDocs & Guide
Developer & MCP API

Connecting MCP to Cursor & Claude Desktop

How to configure siegfried-social in Cursor IDE, Claude Desktop, and Antigravity.

💻 Connecting MCP to Cursor & Claude Desktop

Easily connect Siegfried MCP to your favorite AI IDEs and desktop clients.

1. Cursor IDE Configuration

Add the following to your ~/.cursor/mcp.json or project .cursor/mcp.json:

{
  "mcpServers": {
    "siegfried-social": {
      "command": "node",
      "args": ["/path/to/mcp-siegfried-social/index.js"],
      "env": {
        "SIEGFRIED_API_KEY": "YOUR_API_KEY_HERE",
        "BACKEND_PORT": "3001"
      }
    }
  }
}

2. Claude Desktop Configuration

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "siegfried-social": {
      "command": "node",
      "args": ["/path/to/mcp-siegfried-social/index.js"],
      "env": {
        "SIEGFRIED_API_KEY": "YOUR_API_KEY_HERE"
      }
    }
  }
}

On this page