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

# OpenClaw Setup

> Let your lobster agents master any content in seconds.

<img src="https://mintcdn.com/augent/ts9b2Hbuul430eEC/images/augent-openclaw.png?fit=max&auto=format&n=ts9b2Hbuul430eEC&q=85&s=437bcd717c292a5329032767a58d7757" alt="Augent x OpenClaw" style={{ width: '100%', borderRadius: '12px' }} width="1200" height="500" data-path="images/augent-openclaw.png" />

## Automatic Setup

If OpenClaw is already installed, the Augent installer detects it and configures everything automatically:

```bash theme={null}
curl -fsSL https://augent.app/install.sh | bash
```

The installer adds the MCP server config to `~/.openclaw/openclaw.json` and installs the skill to `~/.openclaw/skills/augent/`.

## Manual Setup

If you installed Augent before OpenClaw, run:

```bash theme={null}
augent setup openclaw
```

This registers Augent as an OpenClaw skill and configures the MCP server.

## Manual Config

Add Augent to your OpenClaw MCP config (`~/.openclaw/openclaw.json`):

```json theme={null}
{
  "mcpServers": {
    "augent": {
      "command": "augent-mcp"
    }
  }
}
```

If `augent-mcp` is not in PATH, use the full Python module path:

```json theme={null}
{
  "mcpServers": {
    "augent": {
      "command": "python3",
      "args": ["-m", "augent.mcp"]
    }
  }
}
```

## Verify

Start a new OpenClaw session. Run `/mcp` — Augent and all 21 tools are ready.

## ClawHub

<CardGroup cols={1}>
  <Card title="Augent on ClawHub" icon="lobster" href="https://clawhub.ai/augentdevs/augent">
    Install Augent directly from ClawHub with one command.
  </Card>
</CardGroup>

```bash theme={null}
npx clawhub@latest install augent
```
