# OpenClaw MCP Server (npm · openclaw-mcp)

MCP server bridging Claude.ai/Desktop with self-hosted OpenClaw via OAuth 2.1.

- Trust score: 75/100 (medium)
- Change this week: +47
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `openclaw-mcp`: 75/100 (this document), [markdown](https://verifymcp.io/servers/freema-openclaw-mcp/openclaw-mcp.md), [page](https://verifymcp.io/servers/freema-openclaw-mcp/openclaw-mcp)
- oci · `ghcr.io/freema/openclaw-mcp:1.7.0`: 9/100, [markdown](https://verifymcp.io/servers/freema-openclaw-mcp/ghcr-io-freema-openclaw-mcp-1-7-0.md), [page](https://verifymcp.io/servers/freema-openclaw-mcp/ghcr-io-freema-openclaw-mcp-1-7-0)

## Channel facts

- Registry: `npm`
- Package: `openclaw-mcp`
- Version: `1.7.0`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (110 of 114), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (110 of 114), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 97/100
  - Source repository is publicly reachable at the declared URL.
  - Cryptographically verified build provenance (signed, bound to freema/openclaw-mcp).
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 7 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 71/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 415 tokens (~59/item across 7 items; 7 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

**Unverified: 1 category.** A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

## Install

### Claude

```bash
claude mcp add freema-openclaw-mcp -- npx -y openclaw-mcp
```

### Codex

```bash
codex mcp add freema-openclaw-mcp -- npx -y openclaw-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "freema-openclaw-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "openclaw-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add freema-openclaw-mcp --command npx --arg -y --arg openclaw-mcp
```

### Hermes

```yaml
mcp_servers:
  freema-openclaw-mcp:
    command: "npx"
    args: ["-y", "openclaw-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "freema-openclaw-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "openclaw-mcp"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-02 (score 75, +54)

- [security improvement] Install scripts: unverified → pass
- [security improvement] Provenance: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [security] The attested source repository moved: freema/openclaw-mcp
- [functional regression] Tool coverage: 100 → unverified
- [functional improvement] Schema quality: unverified → good
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional] Licence: MIT

### 2026-08-01 (score 21, +16)

- [functional improvement] Tool coverage: unverified → 100

### 2026-07-31 (score 5, −23)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-27 (score 28)

First indexed and scored.

## MCP tools (7)

### `openclaw_chat` (~80 tokens)

Send a message to OpenClaw and get a response

Input parameters:

- `instance` (string): Target OpenClaw instance name. Use openclaw_instances to list available instances. Defaults to the default instance.
- `message` (string, required): The message to send to OpenClaw
- `session_id` (string): Optional session ID for conversation context

### `openclaw_status` (~39 tokens)

Get OpenClaw gateway status and health information

Input parameters:

- `instance` (string): Target OpenClaw instance name. Defaults to the default instance.

### `openclaw_chat_async` (~108 tokens)

Send a message to OpenClaw asynchronously. Returns a task_id immediately that can be polled for results. Use this for potentially long-running conversations.

Input parameters:

- `instance` (string): Target OpenClaw instance name. Defaults to the default instance.
- `message` (string, required): The message to send to OpenClaw
- `priority` (number): Task priority (higher = processed first). Default: 0
- `session_id` (string): Optional session ID for conversation context

### `openclaw_task_status` (~45 tokens)

Check the status of an async task. Returns status, and result if completed.

Input parameters:

- `task_id` (string, required): The task ID returned from openclaw_chat_async

### `openclaw_task_list` (~60 tokens)

List all tasks. Optionally filter by status, session, or instance.

Input parameters:

- `instance` (string): Filter by instance name
- `session_id` (string): Filter by session ID
- `status` (string): Filter by task status

### `openclaw_task_cancel` (~38 tokens)

Cancel a pending task. Only works for tasks that haven't started yet.

Input parameters:

- `task_id` (string, required): The task ID to cancel

### `openclaw_instances` (~45 tokens)

List all configured OpenClaw instances. Shows instance names, URLs, and which is the default. Use instance names in other tools to target a specific OpenClaw gateway.

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/freema-openclaw-mcp/openclaw-mcp#diagnostics

## Score history

- 2026-08-03: 75
- 2026-08-02: 75
- 2026-08-01: 21
- 2026-07-31: 5
- 2026-07-30: 28
- 2026-07-28: 28
- 2026-07-27: 28

## Links

- npm package: https://www.npmjs.com/package/openclaw-mcp
- Socket report: https://socket.dev/npm/package/openclaw-mcp
- Repository: https://github.com/freema/openclaw-mcp
- Website: https://openclaw-mcp.cloud/
- Changelog RSS feed: https://verifymcp.io/servers/freema-openclaw-mcp/openclaw-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/freema-openclaw-mcp/openclaw-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/freema-openclaw-mcp/openclaw-mcp
