Skip to main content
This page covers setup for multiple MCP clients. You can use one or more product keys, depending on which Forge tools you need.

Claude Desktop

  1. Open Claude Desktop.
  2. Go to Settings -> Developer -> Edit Config.
  3. Add this server configuration:
{
  "mcpServers": {
    "salesforge": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://mcp.salesforge.ai/mcp",
        "--header",
        "X-Salesforge-Key:YOUR_SALESFORGE_API_KEY",
        "--header",
        "X-Primeforge-Key:YOUR_PRIMEFORGE_API_KEY",
        "--header",
        "X-Leadsforge-Key:YOUR_LEADSFORGE_API_KEY",
        "--header",
        "X-Infraforge-Key:YOUR_INFRAFORGE_API_KEY",
        "--header",
        "X-Warmforge-Key:YOUR_WARMFORGE_API_KEY",
        "--header",
        "X-Mailforge-Key:YOUR_MAILFORGE_API_KEY"
      ]
    }
  }
}
  1. Remove header lines for products you do not use.
  2. Save the file and restart Claude Desktop.

Claude Code

Run:
claude mcp add salesforge \
  --transport streamable-http \
  --url https://mcp.salesforge.ai/mcp \
  --header "X-Salesforge-Key:YOUR_SALESFORGE_API_KEY" \
  --header "X-Primeforge-Key:YOUR_PRIMEFORGE_API_KEY" \
  --header "X-Leadsforge-Key:YOUR_LEADSFORGE_API_KEY" \
  --header "X-Infraforge-Key:YOUR_INFRAFORGE_API_KEY" \
  --header "X-Warmforge-Key:YOUR_WARMFORGE_API_KEY" \
  --header "X-Mailforge-Key:YOUR_MAILFORGE_API_KEY"
Only keep headers for products you actually use.
For more detailed Claude Code connection guidance and screenshots, see the Salesforge help article: Salesforge MCP server with Claude for cold Email and LinkedIn outreach

Cursor

In Cursor, open Settings -> MCP and add a server with:
  • Name: salesforge
  • Type: streamable-http
  • URL: https://mcp.salesforge.ai/mcp
  • Headers: product headers from MCP overview

Windsurf and other MCP clients

For clients that support direct remote MCP server configuration, use:
{
  "mcpServers": {
    "salesforge": {
      "url": "https://mcp.salesforge.ai/mcp",
      "headers": {
        "X-Salesforge-Key": "YOUR_SALESFORGE_API_KEY",
        "X-Primeforge-Key": "YOUR_PRIMEFORGE_API_KEY",
        "X-Leadsforge-Key": "YOUR_LEADSFORGE_API_KEY",
        "X-Infraforge-Key": "YOUR_INFRAFORGE_API_KEY",
        "X-Warmforge-Key": "YOUR_WARMFORGE_API_KEY",
        "X-Mailforge-Key": "YOUR_MAILFORGE_API_KEY"
      }
    }
  }
}
If your client does not support direct remote MCP yet, use the npx mcp-remote bridge pattern shown in the Claude Desktop section.

VS Code MCP clients

If you use a VS Code MCP extension, configure the same endpoint and headers:
  • URL: https://mcp.salesforge.ai/mcp
  • Transport: streamable-http
  • Headers: only the product headers you use
Use your extension’s MCP settings or JSON config format. If command-based configuration is required, use npx mcp-remote with the same headers.

Verify the connection

After setup, test prompts like:
  • “List my Salesforge workspaces”
  • “Show my Primeforge domains”
  • “Search Leadsforge for CTOs at SaaS companies”
  • “Show my Warmforge warmup stats”
  • “List my Mailforge domains”