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

# OpenClaw

> Connect OpenClaw chat channels to Ollang for conversational translation order workflows.

# Ollang MCP in OpenClaw

[OpenClaw](https://openclaw.ai) is an open-source, self-hosted personal-assistant gateway. It connects channels such as Slack, Telegram, WhatsApp, Discord, iMessage, Signal, and Teams to agents that can use Ollang for localization operations.

## Setup

<Steps>
  <Step title="Add Ollang to OpenClaw">
    Add a remote server under `mcp.servers` in the OpenClaw JSON5 configuration:

    ```json5 theme={null}
    {
      mcp: {
        servers: {
          ollang: {
            url: "https://mcp.ollang.com/mcp",
            transport: "streamable-http",
            auth: "oauth"
          }
        }
      }
    }
    ```
  </Step>

  <Step title="Or add it from the CLI">
    Instead of editing the configuration by hand, add the server with the OpenClaw MCP command:

    ```bash theme={null}
    openclaw mcp add ollang \
      --url https://mcp.ollang.com/mcp \
      --transport streamable-http \
      --auth oauth
    ```
  </Step>

  <Step title="Authenticate">
    Run `openclaw mcp login ollang`, or let the first connection open the browser-based OAuth 2.0 + PKCE flow. Complete Ollang sign-in and return to OpenClaw.
  </Step>

  <Step title="Check the connection">
    Use `openclaw mcp list`, `openclaw mcp tools ollang`, or `openclaw mcp probe ollang` to inspect the server. The browser Control UI also exposes MCP settings at `/settings/mcp`.
  </Step>

  <Step title="Reload after changes">
    Use `openclaw mcp reload` after changing configuration. OpenClaw also provides `mcp add`, `mcp set`, and `mcp doctor` for managing and diagnosing servers.
  </Step>
</Steps>

## Use Cases

### Check orders from a chat channel

```
From this WhatsApp conversation, check my Ollang orders from the last
seven days. Group them by status and tell me which subtitle, dubbing, or
document deliveries need attention.
```

### Send proactive completion notifications

```
Schedule a daily Ollang check. When an order for the folder "Campaign
Assets" becomes completed, notify the localization team in Slack with the
order ID, target languages, and delivered file links. Do not notify for
orders that were already reported.
```

### Start localization conversationally

```
Create an Ollang subtitle order for https://example.com/episode.mp4 from
English to Spanish and Japanese, and an AI dubbing order to Spanish. Use
the "Streaming Series" custom instruction and report the order IDs here.
```

### Review a translation from a team channel

```
Find the completed French document order for the latest i18n release,
download its deliverable, and run a QC evaluation for accuracy and
fluency. Summarize the result in this channel and mention any revisions
that should be requested.
```

<Tip>
  OpenClaw's differentiator is access from the channels where teams already work: use scheduled checks, chat commands, and proactive notifications to keep Ollang orders visible without opening the dashboard.
</Tip>
