惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

J
Java Code Geeks
博客园 - 司徒正美
博客园 - 【当耐特】
爱范儿
爱范儿
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
IT之家
IT之家
人人都是产品经理
人人都是产品经理
雷峰网
雷峰网
酷 壳 – CoolShell
酷 壳 – CoolShell
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
大猫的无限游戏
大猫的无限游戏
月光博客
月光博客
宝玉的分享
宝玉的分享
V
V2EX
S
SegmentFault 最新的问题
V
Visual Studio Blog
阮一峰的网络日志
阮一峰的网络日志
Martin Fowler
Martin Fowler
Jina AI
Jina AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园_首页
L
LangChain Blog
D
Docker
腾讯CDC

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
docs: expand MCP operator guide · openclaw/openclaw@7606e1d
steipete · 2026-05-31 · via Recent Commits to openclaw:main

@@ -20,6 +20,23 @@ In other words:

20202121

Use [`openclaw acp`](/cli/acp) when OpenClaw should host a coding harness session itself and route that runtime through ACP.

222223+

## Choose the right MCP path

24+25+

OpenClaw has several MCP surfaces. Pick the one that matches who owns the agent runtime and who owns the tools.

26+27+

| Goal | Use | Why |

28+

| ------------------------------------------------------------------- | -------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- |

29+

| Let an external MCP client read/send OpenClaw channel conversations | `openclaw mcp serve` | OpenClaw is the MCP server and exposes Gateway-backed conversations over stdio. |

30+

| Save third-party MCP servers for OpenClaw-managed agent runs | `openclaw mcp add`, `set`, `configure`, `tools`, `login` | OpenClaw is the MCP client-side registry and later projects those servers into eligible runtimes. |

31+

| Check a saved server without running an agent turn | `openclaw mcp status`, `doctor`, `probe` | `status` and `doctor` inspect config; `probe` opens a live MCP connection and lists capabilities. |

32+

| Edit MCP config from a browser | Control UI `/mcp` | The page shows inventory, enablement, OAuth/filter summaries, command hints, and a scoped `mcp` editor. |

33+

| Give Codex app-server a scoped native MCP server | `mcp.servers.<name>.codex` | The `codex` block only affects Codex app-server thread projection and is stripped before native config handoff. |

34+

| Run ACP-hosted harness sessions | [`openclaw acp`](/cli/acp) and [ACP Agents](/tools/acp-agents-setup) | ACP bridge mode does not accept per-session MCP server injection; configure gateway/plugin bridges instead. |

35+36+

<Tip>

37+

If you are not sure which path you need, start with `openclaw mcp status --verbose`. It shows what OpenClaw has saved without starting any MCP servers.

38+

</Tip>

39+2340

## OpenClaw as an MCP server

24412542

This is the `openclaw mcp serve` path.

@@ -449,6 +466,166 @@ openclaw mcp logout docs

449466

openclaw mcp unset context7

450467

```

451468469+

### Common server recipes

470+471+

These examples save server definitions only. Run `openclaw mcp doctor --probe` afterward to prove that the server starts and exposes tools.

472+473+

<Tabs>

474+

<Tab title="Filesystem">

475+

```bash

476+

openclaw mcp add files \

477+

--command npx \

478+

--arg -y \

479+

--arg @modelcontextprotocol/server-filesystem \

480+

--arg "$HOME/Documents" \

481+

--include 'read_file,list_directory,search_files'

482+

openclaw mcp doctor files --probe

483+

```

484+485+

Scope filesystem servers to the smallest directory tree that the agent should read or edit.

486+487+

</Tab>

488+

<Tab title="Memory">

489+

```bash

490+

openclaw mcp add memory \

491+

--command npx \

492+

--arg -y \

493+

--arg @modelcontextprotocol/server-memory

494+

openclaw mcp probe memory --json

495+

```

496+497+

Use a tool filter if the server exposes write tools that should not be available to normal agents.

498+499+

</Tab>

500+

<Tab title="Local script">

501+

```bash

502+

openclaw mcp add local-tools \

503+

--command node \

504+

--arg ./dist/mcp-server.js \

505+

--cwd /srv/openclaw-tools \

506+

--env API_BASE=https://internal.example

507+

openclaw mcp status --verbose

508+

```

509+510+

`doctor` checks that `cwd` exists and that the command resolves from the configured environment.

511+512+

</Tab>

513+

<Tab title="Remote HTTP">

514+

```bash

515+

openclaw mcp add docs \

516+

--url https://mcp.example.com/mcp \

517+

--transport streamable-http \

518+

--auth oauth \

519+

--oauth-scope docs.read \

520+

--timeout 20 \

521+

--connect-timeout 5 \

522+

--include 'search,read_*'

523+

openclaw mcp doctor docs --probe

524+

```

525+526+

Use OAuth when the remote server supports it. If the server requires static headers, avoid committing literal bearer tokens.

527+528+

</Tab>

529+

<Tab title="Desktop/CUA">

530+

```bash

531+

openclaw mcp set cua-driver '{"command":"cua-driver","args":["mcp"]}'

532+

openclaw mcp tools cua-driver --include 'list_apps,observe,click,type'

533+

openclaw mcp doctor cua-driver --probe

534+

```

535+536+

Direct desktop-control servers inherit the permissions of the process they launch. Use narrow tool filters and OS-level permission prompts.

537+538+

</Tab>

539+

</Tabs>

540+541+

### JSON output shapes

542+543+

Use `--json` for scripts and dashboards. Field sets can grow over time, so consumers should ignore unknown keys.

544+545+

<AccordionGroup>

546+

<Accordion title="status --json">

547+

```json

548+

{

549+

"path": "/home/user/.openclaw/openclaw.json",

550+

"servers": [

551+

{

552+

"name": "docs",

553+

"configured": true,

554+

"enabled": true,

555+

"ok": true,

556+

"transport": "streamable-http",

557+

"launch": "streamable-http https://mcp.example.com/mcp",

558+

"auth": "oauth",

559+

"authStatus": {

560+

"hasTokens": true,

561+

"hasClientInformation": true,

562+

"hasCodeVerifier": false,

563+

"hasDiscoveryState": true,

564+

"hasLastAuthorizationUrl": false

565+

},

566+

"requestTimeoutMs": 20000,

567+

"connectionTimeoutMs": 5000,

568+

"toolFilter": {

569+

"include": ["search", "read_*"],

570+

"exclude": []

571+

},

572+

"supportsParallelToolCalls": true

573+

}

574+

]

575+

}

576+

```

577+

</Accordion>

578+

<Accordion title="doctor --json">

579+

```json

580+

{

581+

"ok": false,

582+

"path": "/home/user/.openclaw/openclaw.json",

583+

"servers": [

584+

{

585+

"name": "docs",

586+

"ok": false,

587+

"issues": [

588+

{

589+

"level": "error",

590+

"message": "OAuth credentials are not authorized; run openclaw mcp login docs"

591+

}

592+

]

593+

}

594+

]

595+

}

596+

```

597+598+

`doctor --json` exits nonzero when any enabled checked server has an error. Warnings are reported but do not make the command fail by themselves.

599+600+

</Accordion>

601+

<Accordion title="probe --json">

602+

```json

603+

{

604+

"path": "/home/user/.openclaw/openclaw.json",

605+

"generatedAt": "2026-05-31T09:00:00.000Z",

606+

"servers": {

607+

"docs": {

608+

"launch": "streamable-http https://mcp.example.com/mcp",

609+

"tools": 2,

610+

"resources": true,

611+

"prompts": false,

612+

"listChanged": {

613+

"tools": true,

614+

"resources": false,

615+

"prompts": false

616+

}

617+

}

618+

},

619+

"tools": ["docs__read_page", "docs__search"],

620+

"diagnostics": []

621+

}

622+

```

623+624+

`probe` opens a live MCP client session. Use it for reachability and capability proof, not for static config audits.

625+626+

</Accordion>

627+

</AccordionGroup>

628+452629

Example config shape:

453630454631

```json

@@ -538,6 +715,58 @@ Example:

538715539716

Sensitive values in `url` (userinfo) and `headers` are redacted in logs and status output. `openclaw mcp doctor` warns when sensitive-looking `headers` or `env` entries contain literal values, so operators can move those values out of committed config.

540717718+

### OAuth workflow

719+720+

OAuth is for HTTP MCP servers that advertise the MCP OAuth flow. Static `Authorization` headers are ignored for a server while `auth: "oauth"` is enabled.

721+722+

<Steps>

723+

<Step title="Save the server">

724+

Add or update the server with `auth: "oauth"` and any optional OAuth metadata.

725+726+

```bash

727+

openclaw mcp set docs '{"url":"https://mcp.example.com/mcp","transport":"streamable-http","auth":"oauth","oauth":{"scope":"docs.read"}}'

728+

```

729+730+

</Step>

731+

<Step title="Start login">

732+

Run login to create the authorization request.

733+734+

```bash

735+

openclaw mcp login docs

736+

```

737+738+

OpenClaw prints the authorization URL and stores temporary OAuth verifier state under the OpenClaw state directory.

739+740+

</Step>

741+

<Step title="Finish with the code">

742+

After approving in the browser, pass the returned code back to OpenClaw.

743+744+

```bash

745+

openclaw mcp login docs --code abc123

746+

```

747+748+

</Step>

749+

<Step title="Check authorization">

750+

Use status or doctor to confirm that tokens are present.

751+752+

```bash

753+

openclaw mcp status --verbose

754+

openclaw mcp doctor docs --probe

755+

```

756+757+

</Step>

758+

<Step title="Clear credentials">

759+

Logout removes stored OAuth credentials but keeps the saved server definition.

760+761+

```bash

762+

openclaw mcp logout docs

763+

```

764+765+

</Step>

766+

</Steps>

767+768+

If the provider rotates tokens or the authorization state gets stuck, run `openclaw mcp logout <name>`, then repeat `login`. `logout` can clear credentials for a saved HTTP server even after `auth: "oauth"` has been removed from config, as long as the server name and URL still identify the credential store entry.

769+541770

### Streamable HTTP transport

542771543772

`streamable-http` is an additional transport option alongside `sse` and `stdio`. It uses HTTP streaming for bidirectional communication with remote MCP servers.

@@ -587,6 +816,23 @@ The browser Control UI includes a dedicated MCP settings page at `/mcp`. It show

587816588817

Use the page for operator edits and quick inventory. Use `openclaw mcp doctor --probe` or `openclaw mcp probe` when you need live server proof.

589818819+

Operator workflow:

820+821+

1. Open the Control UI and choose **MCP**.

822+

2. Review the summary cards for total, enabled, OAuth, and filtered servers.

823+

3. Use each server row for transport, auth, filter, timeout, and command hints.

824+

4. Toggle enablement when you want to keep a definition but exclude it from runtime discovery.

825+

5. Edit the scoped `mcp` config section for structural changes such as new servers, headers, TLS, OAuth metadata, or tool filters.

826+

6. Choose **Save** to persist config only, or **Save & Publish** to apply through the Gateway config path.

827+

7. Run `openclaw mcp doctor --probe` when you need live proof that the edited server starts and lists tools.

828+829+

Notes:

830+831+

- command snippets quote server names so unusual names remain copyable in a shell

832+

- displayed URL-like values are redacted before rendering when they contain embedded credentials

833+

- the page does not start MCP transports by itself

834+

- active runtimes may need `openclaw mcp reload`, Gateway config publish, or process restart depending on which process owns the MCP clients

835+590836

## Current limits

591837592838

This page documents the bridge as shipped today.