> ## Documentation Index
> Fetch the complete documentation index at: https://developer.salesforge.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Client setup guides

> Configure the Forge MCP server in Claude, Cursor, Windsurf, VS Code, and other MCP clients.

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:

```json theme={null}
{
  "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"
      ]
    }
  }
}
```

4. Remove header lines for products you do not use.
5. Save the file and restart Claude Desktop.

## Claude Code

Run:

```bash theme={null}
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.

<Info>
  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](https://help.salesforge.ai/en/articles/10333582-salesforge-mcp-server-with-claude-for-cold-email-and-linkedin-outreach)
</Info>

## 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](/mcp/overview)

## Windsurf and other MCP clients

For clients that support direct remote MCP server configuration, use:

```json theme={null}
{
  "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"
