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

# Client Configurations

> Copy-paste configs for Claude Code, Claude Desktop, Claude.ai, Cursor, and more.

Replace `YOUR_API_KEY` with your `sk_live_...` key in all examples below.

## Claude Code

```bash theme={null}
claude mcp add --transport http morphic \
  https://mcp.morphic.io/v1/mcp \
  --header "Authorization: Bearer YOUR_API_KEY"
```

Verify with: `"ping morphic"` → `pong — morphic-mcp v0.x.x`

## Claude Desktop

Edit the config file:

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

```json theme={null}
{
  "mcpServers": {
    "morphic": {
      "url": "https://mcp.morphic.io/v1/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}
```

Restart Claude Desktop after saving.

## Claude.ai web connector

1. Open **Claude.ai → Customize → Connectors → Add custom connector**
2. URL: `https://mcp.morphic.io/v1/mcp` → click **Connect**
3. Paste your API key on the Morphic page that opens → click **Connect**
4. Redirected back to Claude.ai — setup complete

<Tip>
  After the one-time setup, Claude.ai stores the key internally. You won't need to enter it again.
</Tip>

## Cursor

In Cursor: **Settings → MCP**

```json theme={null}
{
  "mcpServers": {
    "morphic": {
      "url": "https://mcp.morphic.io/v1/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}
```

## OpenClaw

```json theme={null}
{
  "mcp": {
    "servers": {
      "morphic": {
        "url": "https://mcp.morphic.io/v1/mcp",
        "transport": "streamable-http",
        "headers": {
          "Authorization": "Bearer ${MORPHIC_API_KEY}"
        }
      }
    }
  }
}
```

Set `MORPHIC_API_KEY` in your environment before starting OpenClaw.

## Hermes

```yaml theme={null}
mcp_servers:
  morphic:
    url: "https://mcp.morphic.io/v1/mcp"
    headers:
      Authorization: "Bearer ${MORPHIC_API_KEY}"
```

## Any MCP client

| Parameter    | Value                                                           |
| ------------ | --------------------------------------------------------------- |
| URL          | `https://mcp.morphic.io/v1/mcp`                                 |
| Transport    | Streamable HTTP                                                 |
| Auth header  | `Authorization: Bearer sk_live_xxx` or `X-API-Key: sk_live_xxx` |
| Content-Type | `application/json`                                              |
