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

# Connecting a client

> Add woku's MCP server to claude.ai, Claude Code, or ChatGPT and approve access from your account

Connecting an MCP client to woku takes less than a minute. There are no API keys to copy: you paste a URL, approve access from your account, and the agent is ready to query your company data.

The only URL you need is:

```
https://api.woku.app/mcp
```

## Requirements

* A woku account with access to the company you want to connect.
* A client compatible with MCP over HTTP, such as claude.ai, Claude Code, ChatGPT, or another agent that supports the protocol.

## Step by step

The flow is the same across all clients:

<Steps>
  <Step title="Add the server in your client">
    Paste the URL `https://api.woku.app/mcp` where your client asks for the MCP server or connector.
  </Step>

  <Step title="Approve access">
    The browser opens the consent screen of the woku admin panel. Sign in if you have not done so yet, choose the company you want to connect, and approve.
  </Step>

  <Step title="Start asking">
    The connection stays bound to the company you chose and the agent can now use woku's tools.
  </Step>
</Steps>

## Per client

<Tabs>
  <Tab title="claude.ai">
    In claude.ai open the settings, go to the **connectors** section, and add a **custom connector** with the URL `https://api.woku.app/mcp`. When you save it, the browser opens woku's consent screen.
  </Tab>

  <Tab title="Claude Code">
    Add the server from the terminal:

    ```bash theme={null}
    claude mcp add --transport http woku https://api.woku.app/mcp
    ```

    Then, inside Claude Code, run `/mcp`, select **woku**, and complete the authentication in the browser.
  </Tab>

  <Tab title="ChatGPT">
    Enable **developer mode** in ChatGPT's connector settings and add the server with the URL `https://api.woku.app/mcp`.

    Without developer mode, ChatGPT can only use the `search` and `fetch` tools in deep research. With developer mode active it has access to all the tools.
  </Tab>
</Tabs>

<Note>
  Each connection is associated with **a single company**. If you belong to several companies and want to query them all, create one connection per company.
</Note>

To understand what the agent can do once connected, see the [available tools](/docs/en/mcp/herramientas). For the authentication and security detail, see the [MCP server](/docs/en/mcp/servidor).
