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

# Setup

Free tier URL (no key):

```
https://mcp.trychannel3.com/
```

For unlimited / pay-as-you-go, append `?apiKey=<your-api-key>`. See [MCP overview](/mcp-overview).

export const PreviewButton = ({children, href}) => {
  return <a href={href} className="text-sm font-medium text-white dark:!text-zinc-950 bg-zinc-900 hover:bg-zinc-700 dark:bg-zinc-100 hover:dark:bg-zinc-300 rounded-full px-3.5 py-1.5 not-prose">
      {children}
    </a>;
};

<Tabs>
  <Tab title="Cursor">
    <PreviewButton href="cursor://anysphere.cursor-deeplink/mcp/install?name=Channel3&config=eyJ1cmwiOiJodHRwczovL21jcC50cnljaGFubmVsMy5jb20vIn0=">Install in Cursor</PreviewButton>

    Or add to `~/.cursor/mcp.json`:

    ```json theme={null}
    {
      "mcpServers": {
        "Channel3": {
          "url": "https://mcp.trychannel3.com/"
        }
      }
    }
    ```
  </Tab>

  <Tab title="VS Code">
    <PreviewButton href="https://vscode.dev/redirect/mcp/install?name=Channel3&config=%7B%22type%22%3A%22http%22%2C%22url%22%3A%22https%3A%2F%2Fmcp.trychannel3.com%2F%22%7D">Install in VS Code</PreviewButton>

    Or add to `.vscode/mcp.json`:

    ```json theme={null}
    {
      "servers": {
        "Channel3": {
          "type": "http",
          "url": "https://mcp.trychannel3.com/"
        }
      }
    }
    ```
  </Tab>

  <Tab title="Claude Code">
    ```bash theme={null}
    claude mcp add --transport http Channel3 "https://mcp.trychannel3.com/"
    ```
  </Tab>

  <Tab title="Claude Desktop">
    Add to your Claude Desktop config:

    **macOS:** `~/Library/Application Support/Claude/claude_desktop_config.json`\
    **Windows:** `%APPDATA%\Claude\claude_desktop_config.json`

    ```json theme={null}
    {
      "mcpServers": {
        "Channel3": {
          "command": "npx",
          "args": ["-y", "mcp-remote", "https://mcp.trychannel3.com/sse"]
        }
      }
    }
    ```
  </Tab>

  <Tab title="Codex">
    ```bash theme={null}
    codex mcp add Channel3 --url https://mcp.trychannel3.com/
    ```
  </Tab>

  <Tab title="OpenCode">
    ```json theme={null}
    {
      "mcp": {
        "Channel3": {
          "type": "remote",
          "url": "https://mcp.trychannel3.com/",
          "enabled": true
        }
      }
    }
    ```
  </Tab>
</Tabs>

That's it. Try a prompt from the [MCP overview](/mcp-overview#example-prompts) to confirm tools are available.
