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

# Claude Code

> Connect KonbiniAPI to Claude Code using the hosted remote MCP server.

Claude Code supports hosted MCP servers over HTTP with OAuth directly from the
CLI.

<Steps>
  <Step title="Add the server">
    ```bash theme={null}
    claude mcp add --transport http konbiniapi https://mcp.konbiniapi.com
    ```
  </Step>

  <Step title="Authorize">
    Inside a Claude Code session, run `/mcp` and follow the browser-based OAuth
    flow to link your KonbiniAPI account.
  </Step>

  <Step title="Verify">
    Run `/mcp` in Claude Code and confirm `konbiniapi` is available.
  </Step>
</Steps>

To make the server available across all projects, add the `--scope user` flag:

```bash theme={null}
claude mcp add --transport http --scope user konbiniapi https://mcp.konbiniapi.com
```
