> ## 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.

# Toolkit

> Install the woku AI Toolkit: the plugin that connects your agent to woku's MCP server and teaches it the woku method, in a single step

The **woku AI Toolkit** packages everything an agent needs to work with woku into an installable plugin: the connection to the MCP server (the full tool catalog with woku's OAuth) and a skill that teaches it the **woku method** so it acts as a customer-experience consultant, not just a command runner.

It is open source: [github.com/wokuApp/woku-ai-toolkit](https://github.com/wokuApp/woku-ai-toolkit).

## What it includes

* The **woku MCP server** connection (`https://api.woku.app/mcp`): installing the toolkit exposes the full tool catalog with woku's OAuth. No API keys to copy.
* The **woku skill**: primes the agent with the method (protect revenue with the voice of the customer) and tells it to call `woku_guide` first.

## Install

<Tabs>
  <Tab title="Claude Code">
    Add woku's marketplace and install the plugin. This sets up both the MCP server and the skill:

    ```
    /plugin marketplace add wokuApp/woku-ai-toolkit
    /plugin install woku@woku-ai-toolkit
    ```

    Once the toolkit is accepted into the official marketplace, `/plugin install woku@claude-plugins-official` also works.
  </Tab>

  <Tab title="Codex">
    Add woku's MCP server to `~/.codex/config.toml` and authenticate:

    ```toml theme={null}
    [mcp_servers.woku]
    url = "https://api.woku.app/mcp"
    ```

    ```
    codex mcp login woku
    ```

    `auth = "oauth"` is the default for a bare `url`, so Codex opens the browser to complete woku's OAuth. Check it with `codex mcp list`.
  </Tab>

  <Tab title="OpenCode">
    Add the server to your `opencode.json`:

    ```json theme={null}
    {
      "$schema": "https://opencode.ai/config.json",
      "mcp": {
        "woku": {
          "type": "remote",
          "url": "https://api.woku.app/mcp",
          "enabled": true
        }
      }
    }
    ```

    OpenCode runs OAuth automatically on the first authenticated call. To start the login yourself, run `opencode mcp auth woku`.
  </Tab>

  <Tab title="OpenClaw">
    Install the plugin (this sets up the woku skill):

    ```
    openclaw plugins install git:github.com/wokuApp/woku-ai-toolkit
    ```

    OpenClaw's plugin manifest declares local MCP servers only, so add woku's remote MCP server (`https://api.woku.app/mcp`) through your OpenClaw MCP configuration.
  </Tab>

  <Tab title="claude.ai and ChatGPT">
    These are configured from the app, not from a package: add a custom connector (claude.ai) or a developer-mode connector (ChatGPT) with the URL `https://api.woku.app/mcp`. See [Connect a client](/docs/en/mcp/connect-a-client) for details.
  </Tab>
</Tabs>

<Note>
  Every connection is bound to **one company**, chosen when you approve access. Read tools need no special permission; write tools require the `mcp:write` scope, and destructive tools or sends require an explicit confirmation.
</Note>

For the method and the two meta-tools (`woku_guide` and `design_voc_program`), see the [Agent guide](/docs/en/mcp/agent-guide). To connect the MCP server without the plugin, see [Connect a client](/docs/en/mcp/connect-a-client). For the full catalog, see the [available tools](/docs/en/mcp/tools).
