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

# MCP

> Connect OAuth-capable MCP clients to Jinko over the remote endpoint.

Jinko exposes a remote MCP endpoint with OAuth support. Most modern MCP clients only need the endpoint URL.

## Endpoint

```
https://mcp.builders.gojinko.com/mcp
```

## Sandbox

Test the full flow against the sandbox environment (isolated data) before going to production:

```
https://mcp.builders.sandbox.gojinko.com/mcp
```

<Note>
  Sandbox uses **separate API keys / OAuth** from production. Generate a sandbox key from the dashboard. A production token will not authenticate against sandbox (and vice-versa).
</Note>

## Claude Code

```bash theme={null}
claude mcp add --transport http jinko https://mcp.builders.gojinko.com/mcp
```

## Cursor

```json theme={null}
{
  "mcpServers": {
    "jinko": {
      "url": "https://mcp.builders.gojinko.com/mcp"
    }
  }
}
```

## API key mode

When your client does not support OAuth, attach an `Authorization: Bearer jnk_*` header instead.
