Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

io.github.smurfy92/openclaw-control-mcp

NPM · OPENCLAW-CONTROL-MCP · SCANNED AUG 3

MCP server bridging Claude Code to the OpenClaw gateway management plane via JSON-RPC.

+23 this week 66 Trust /100
Trust breakdown (6 categories)

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. How we score →

Supply Chain Security87
  • No malware found by supply-chain analysis.Pass
  • Only part of the dependency tree could be resolved (97 of 101), so this covers what we could see, not the whole tree.Partial
  • No install/post-install scripts declared.Pass
  • Only part of the dependency tree could be resolved (97 of 101), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
Schema Quality & AI Usability64
  • AI-judged instruction clarity (good).Pass
  • Context-footprint check failed: tool/resource definitions use about 19777 tokens (~138/item across 143 items; 143 tools + 0 resources), over budget; trim descriptions and params. See how to fix → Fail
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management23
  • Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage93
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 80% of tool parameters carry a description.Partial
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · openclaw-control-mcp

# add to Claude Code
claude mcp add smurfy92-openclaw-control-mcp -- npx -y openclaw-control-mcp
# add to Codex CLI
codex mcp add smurfy92-openclaw-control-mcp -- npx -y openclaw-control-mcp
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "smurfy92-openclaw-control-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "openclaw-control-mcp"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add smurfy92-openclaw-control-mcp --command npx --arg -y --arg openclaw-control-mcp
# ~/.hermes/config.yaml
mcp_servers:
  smurfy92-openclaw-control-mcp:
    command: "npx"
    args: ["-y", "openclaw-control-mcp"]
// mcp.json
{
  "mcpServers": {
    "smurfy92-openclaw-control-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "openclaw-control-mcp"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 3 Aug 26 +1

    No change was recorded against any check on this day. Stability & Change Management went from 20 to 23. That category is still filling its 30-day observation window: 6 days of observed history at the previous scan, 7 at this one. The score rises as the window fills, whether or not the server changes.

  • 2 Aug 26 +46
    • Provenance: unverified → fail security
    • Install scripts: unverified → pass security
    • Known CVEs: unverified → partial security
    • Malware scan: unverified → pass security
    • Tool coverage: 100 → unverified functional
    • Security disclosure: fail → unverified functional
    • Schema quality: unverified → good functional
    • MCP protocol: unverified → pass functional
    • Stability: unverified → 0.20 functional
    • Dependency health: unverified → partial functional
    • License: unverified → pass functional
    • Maintenance: unverified → pass functional
    • Licence: MIT functional
  • 1 Aug 26 −5
    • Stability: Stability not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet. security
    • Capabilities: pass → unverified functional
  • 31 Jul 26 −1
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 30 Jul 26 +1
    • Malware scan: pass → unverified security
    • Tool coverage: unverified → 100 functional
  • 28 Jul 26 −19
    • Tool coverage: 100 → unverified functional
    • First check of Schema quality: unverified functional
  • 27 Jul 26 43

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 3 Aug 2026 · Analysed npm/[email protected]

Provenance none

Ecosystem: npm · Outcome: none

Dependencies 97 packages

97 packages in the resolved dependency tree · 97 deprecated · 29 stale.

The dependency tree was only partially resolved, so these counts may be incomplete.

MCP tools — 143 exposed · ~19,777 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
openclaw_sessions_patch ~182

Update session metadata (title, displayName, tags, etc.). Wraps `sessions.patch`. Pass id + only the fields you want to change. Schema is intentionally permissive — gateway accepts any subset of session fields.

NameTypeReqDescription
idstringyesSession id. Most session.* methods accept the `sessionId` (UUID); a few accept the composite `key` (e.g. 'agent:main:cron:<id>'). When unsure, try the UUID first; if rejected with NOT_FOUND, retry wi…
instancestringOptional OpenClaw instance to route this call to (e.g. 'default', 'work'). Falls back to the active default instance, or the OPENCLAW_GATEWAY_URL/TOKEN env vars when set. List configured instances wi…

No output schema declared.

No examples provided.

openclaw_sessions_preview ~155

Preview one or more sessions without subscribing — returns recent messages, status, and metadata for each key. Wraps `sessions.preview`. Read-only. Pass `keys` (array of full session keys like 'agent:main:cron:<id>' from openclaw_sessions_list).

NameTypeReqDescription
instancestringOptional OpenClaw instance to route this call to (e.g. 'default', 'work'). Falls back to the active default instance, or the OPENCLAW_GATEWAY_URL/TOKEN env vars when set. List configured instances wi…
keysarrayyesFull session keys (the `key` field returned by openclaw_sessions_list, NOT the sessionId UUID)

No output schema declared.

No examples provided.

openclaw_sessions_reset ~164

Reset a session (clears working state, keeps session id). Wraps `sessions.reset`. Destructive — confirm before calling.

NameTypeReqDescription
idstringyesSession id. Most session.* methods accept the `sessionId` (UUID); a few accept the composite `key` (e.g. 'agent:main:cron:<id>'). When unsure, try the UUID first; if rejected with NOT_FOUND, retry wi…
instancestringOptional OpenClaw instance to route this call to (e.g. 'default', 'work'). Falls back to the active default instance, or the OPENCLAW_GATEWAY_URL/TOKEN env vars when set. List configured instances wi…

No output schema declared.

No examples provided.

openclaw_sessions_send ~187

Send a user message into an existing session. Wraps `sessions.send`. The agent processes async and streams the reply via session.message events; call openclaw_sessions_preview afterwards (with the session's composite key) to see the result. Use either `text` or `message` — gateway accepts both names depending on version.

NameTypeReqDescription
idstringyesSession id (sessionId UUID).
instancestringOptional OpenClaw instance to route this call to (e.g. 'default', 'work'). Falls back to the active default instance, or the OPENCLAW_GATEWAY_URL/TOKEN env vars when set. List configured instances wi…
messagestringMessage text. Older alias for `text`; pass either, not both.
textstringMessage text. Preferred field name in newer gateway versions.

No output schema declared.

No examples provided.

openclaw_sessions_subscribe ~129

Subscribe to session lifecycle events (sessions.changed). Wraps `sessions.subscribe`. Note: the MCP runs over stdio and cannot stream events back to the client — this tool registers the subscription server-side but you won't receive deltas in Claude Code. Useful mainly to confirm the subscription was accepted.

NameTypeReqDescription
instancestringOptional OpenClaw instance to route this call to (e.g. 'default', 'work'). Falls back to the active default instance, or the OPENCLAW_GATEWAY_URL/TOKEN env vars when set. List configured instances wi…

No output schema declared.

No examples provided.

openclaw_sessions_tail ~339

Watch a session by polling `sessions.preview` and return only the NEW messages that appeared during the tail window. Workaround for the stdio MCP not being able to stream `sessions.subscribe` / `session.message` events to Claude Code. Polls every `intervalMs` (default 2000ms) for up to `durationMs` (default 30000ms, max 300000ms), or until `maxMessages` new messages are collected, or until the session reaches a terminal status ('done', 'error', 'aborted', 'timeout', 'completed'). The first poll seeds the 'already-seen' set so existing messages are NOT returned — only what arrives after the tool was called.

NameTypeReqDescription
durationMsintegerTotal tail duration in ms. Default 30000 (30s). Max 300000 (5min).
instancestringOptional OpenClaw instance to route this call to (e.g. 'default', 'work'). Falls back to the active default instance, or the OPENCLAW_GATEWAY_URL/TOKEN env vars when set. List configured instances wi…
intervalMsintegerPolling interval in ms. Default 2000 (2s). Min 500 to avoid hammering the gateway. Max 10000.
keystringyesFull session key (composite, e.g. 'agent:main:cron:<id>') from openclaw_sessions_list.
maxMessagesintegerStop early once this many new messages have arrived — useful to bail out on the first agent reply.

No output schema declared.

No examples provided.

openclaw_sessions_unsubscribe ~84

Unsubscribe from session lifecycle events. Wraps `sessions.unsubscribe`.

NameTypeReqDescription
instancestringOptional OpenClaw instance to route this call to (e.g. 'default', 'work'). Falls back to the active default instance, or the OPENCLAW_GATEWAY_URL/TOKEN env vars when set. List configured instances wi…

No output schema declared.

No examples provided.

openclaw_set_heartbeats ~112

Toggle / configure heartbeat emission from the gateway. Wraps `set-heartbeats`. Pass `enabled` and any cadence params.

NameTypeReqDescription
enabledboolean
instancestringOptional OpenClaw instance to route this call to (e.g. 'default', 'work'). Falls back to the active default instance, or the OPENCLAW_GATEWAY_URL/TOKEN env vars when set. List configured instances wi…
intervalMsinteger

No output schema declared.

No examples provided.

openclaw_setup ~254

Persist a named OpenClaw gateway config (URL + token) to local store. Default instance name is 'default'. Pass `instance` to manage multiple gateways (e.g. 'perso', 'work') from the same MCP. Env vars (OPENCLAW_GATEWAY_URL/TOKEN) still override everything stored here — leave them unset to use named instances. After saving, the matching client connection is closed so the next tool call re-handshakes with the new credentials.

NameTypeReqDescription
gatewayPasswordstringOptional extra password if your gateway is configured with one
gatewayTokenstringyesGateway login token (get it from your Hostinger VPS dashboard or the Control panel after login)
gatewayUrlstringyesWebSocket URL of the gateway, e.g. wss://your-gateway.example.com or ws://127.0.0.1:18789
instancestringInstance name (e.g. 'default', 'perso', 'work'). Defaults to 'default'. The first instance configured becomes the default automatically.
makeDefaultbooleanIf true, also set this instance as the active default (for tools that don't pass `instance`).

No output schema declared.

No examples provided.

openclaw_setup_clear ~81

Clear a persisted gateway config. By default clears every instance; pass `instance` to clear just one. Does NOT touch the device identity or device tokens. After this, the MCP falls back to env vars or errors with 'configure first'.

NameTypeReqDescription
instancestringIf set, clear only this named instance. Omit to clear all instances.

No output schema declared.

No examples provided.

openclaw_setup_list ~47

List every persisted gateway instance (name + URL + whether token/password are set, never the values). Plus the active default instance and where secrets live (file vs OS keychain).

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

openclaw_setup_select_default ~83

Switch the active default instance — every subsequent tool call (cron.list, sessions.list, etc.) will route to this instance unless an env var overrides. Closes existing client connections so they re-handshake with the new instance's credentials.

NameTypeReqDescription
instancestringyesInstance name to set as default. Must already exist (use openclaw_setup first).

No output schema declared.

No examples provided.

openclaw_setup_show ~67

Show the currently resolved gateway configuration for an instance (default 'default' or whichever instance is the active default). Does NOT print tokens. Pass `instance` to inspect a non-default one.

NameTypeReqDescription
instancestringInstance name to inspect. Defaults to the active default instance.

No output schema declared.

No examples provided.

openclaw_skills_bins ~92

List the binaries / executables exposed by installed skills. Wraps `skills.bins`. Read-only.

NameTypeReqDescription
instancestringOptional OpenClaw instance to route this call to (e.g. 'default', 'work'). Falls back to the active default instance, or the OPENCLAW_GATEWAY_URL/TOKEN env vars when set. List configured instances wi…

No output schema declared.

No examples provided.

openclaw_skills_detail ~108

Get detailed info on a specific skill (manifest, version, dependencies, install state). Wraps `skills.detail`. Read-only.

NameTypeReqDescription
idstringyesSkill id / slug
instancestringOptional OpenClaw instance to route this call to (e.g. 'default', 'work'). Falls back to the active default instance, or the OPENCLAW_GATEWAY_URL/TOKEN env vars when set. List configured instances wi…

No output schema declared.

No examples provided.

openclaw_skills_install ~116

Install a skill (or a specific version). Wraps `skills.install`. Mutates the gateway's skill set — confirm before calling.

NameTypeReqDescription
idstringyesSkill id to install
instancestringOptional OpenClaw instance to route this call to (e.g. 'default', 'work'). Falls back to the active default instance, or the OPENCLAW_GATEWAY_URL/TOKEN env vars when set. List configured instances wi…
versionstring

No output schema declared.

No examples provided.

openclaw_skills_search ~104

Search the available skill catalog (installed and remote). Wraps `skills.search`. Read-only.

NameTypeReqDescription
instancestringOptional OpenClaw instance to route this call to (e.g. 'default', 'work'). Falls back to the active default instance, or the OPENCLAW_GATEWAY_URL/TOKEN env vars when set. List configured instances wi…
limitinteger
querystring

No output schema declared.

No examples provided.

openclaw_skills_status ~96

Get the skills subsystem status (which skills are installed, enabled, recently updated). Wraps `skills.status`. Read-only.

NameTypeReqDescription
instancestringOptional OpenClaw instance to route this call to (e.g. 'default', 'work'). Falls back to the active default instance, or the OPENCLAW_GATEWAY_URL/TOKEN env vars when set. List configured instances wi…

No output schema declared.

No examples provided.

openclaw_skills_update ~115

Update an installed skill to its latest (or a specified) version. Wraps `skills.update`. Mutates the gateway state.

NameTypeReqDescription
idstringyesSkill id to update
instancestringOptional OpenClaw instance to route this call to (e.g. 'default', 'work'). Falls back to the active default instance, or the OPENCLAW_GATEWAY_URL/TOKEN env vars when set. List configured instances wi…
versionstring

No output schema declared.

No examples provided.

openclaw_status ~99

Get overall gateway status (uptime, agents, sessions, queues). Wraps the root-level `status` JSON-RPC method. Read-only.

NameTypeReqDescription
instancestringOptional OpenClaw instance to route this call to (e.g. 'default', 'work'). Falls back to the active default instance, or the OPENCLAW_GATEWAY_URL/TOKEN env vars when set. List configured instances wi…

No output schema declared.

No examples provided.

openclaw_system_event ~113

Emit a custom system event onto the gateway bus. Wraps `system-event`. Mostly used for tooling / debug — operators rarely call this directly.

NameTypeReqDescription
eventstringyesEvent name
instancestringOptional OpenClaw instance to route this call to (e.g. 'default', 'work'). Falls back to the active default instance, or the OPENCLAW_GATEWAY_URL/TOKEN env vars when set. List configured instances wi…
payload

No output schema declared.

No examples provided.

openclaw_system_presence ~94

Get presence info (which devices are connected, when they last spoke). Wraps `system-presence`. Read-only.

NameTypeReqDescription
instancestringOptional OpenClaw instance to route this call to (e.g. 'default', 'work'). Falls back to the active default instance, or the OPENCLAW_GATEWAY_URL/TOKEN env vars when set. List configured instances wi…

No output schema declared.

No examples provided.

openclaw_talk_config ~98

Get / set the talk-mode config (push-to-talk, hold-to-listen, voice activity detection). Wraps `talk.config`.

NameTypeReqDescription
instancestringOptional OpenClaw instance to route this call to (e.g. 'default', 'work'). Falls back to the active default instance, or the OPENCLAW_GATEWAY_URL/TOKEN env vars when set. List configured instances wi…

No output schema declared.

No examples provided.

openclaw_talk_mode ~150

Toggle talk mode on/off. Wraps `talk.mode`. Wire format (verified live against gateway 2026.4.12+): requires `enabled: boolean` — this is a SETTER, not a getter. Use `openclaw_talk_config` to read the current state.

NameTypeReqDescription
enabledbooleanyesTrue to turn talk mode on, false to turn it off.
instancestringOptional OpenClaw instance to route this call to (e.g. 'default', 'work'). Falls back to the active default instance, or the OPENCLAW_GATEWAY_URL/TOKEN env vars when set. List configured instances wi…

No output schema declared.

No examples provided.

openclaw_talk_speak ~104

Make the agent speak a piece of text out loud (synthesizes + plays). Wraps `talk.speak`.

NameTypeReqDescription
instancestringOptional OpenClaw instance to route this call to (e.g. 'default', 'work'). Falls back to the active default instance, or the OPENCLAW_GATEWAY_URL/TOKEN env vars when set. List configured instances wi…
textstringyes

No output schema declared.

No examples provided.

openclaw_tools_catalog ~118

List the catalog of agent-facing tools available to OpenClaw agents (i.e. what `main` and other agents can call from inside a session). Wraps `tools.catalog`. Read-only.

NameTypeReqDescription
agentIdstring
instancestringOptional OpenClaw instance to route this call to (e.g. 'default', 'work'). Falls back to the active default instance, or the OPENCLAW_GATEWAY_URL/TOKEN env vars when set. List configured instances wi…

No output schema declared.

No examples provided.

openclaw_tools_effective ~120

Get the effective (merged) tool set for an agent — base catalog + skill-provided + per-agent overrides. Wraps `tools.effective`. Read-only.

NameTypeReqDescription
agentIdstring
instancestringOptional OpenClaw instance to route this call to (e.g. 'default', 'work'). Falls back to the active default instance, or the OPENCLAW_GATEWAY_URL/TOKEN env vars when set. List configured instances wi…
sessionIdstring

No output schema declared.

No examples provided.

openclaw_tts_convert ~112

Synthesize a piece of text to audio. Wraps `tts.convert`. Returns audio / a download URL depending on the gateway config.

NameTypeReqDescription
instancestringOptional OpenClaw instance to route this call to (e.g. 'default', 'work'). Falls back to the active default instance, or the OPENCLAW_GATEWAY_URL/TOKEN env vars when set. List configured instances wi…
textstringyes
voicestring

No output schema declared.

No examples provided.

openclaw_tts_disable ~84

Disable text-to-speech output. Wraps `tts.disable`.

NameTypeReqDescription
instancestringOptional OpenClaw instance to route this call to (e.g. 'default', 'work'). Falls back to the active default instance, or the OPENCLAW_GATEWAY_URL/TOKEN env vars when set. List configured instances wi…

No output schema declared.

No examples provided.

openclaw_tts_enable ~84

Enable text-to-speech output. Wraps `tts.enable`.

NameTypeReqDescription
instancestringOptional OpenClaw instance to route this call to (e.g. 'default', 'work'). Falls back to the active default instance, or the OPENCLAW_GATEWAY_URL/TOKEN env vars when set. List configured instances wi…

No output schema declared.

No examples provided.

openclaw_tts_providers ~93

List available TTS providers (and their voices / models). Wraps `tts.providers`. Read-only.

NameTypeReqDescription
instancestringOptional OpenClaw instance to route this call to (e.g. 'default', 'work'). Falls back to the active default instance, or the OPENCLAW_GATEWAY_URL/TOKEN env vars when set. List configured instances wi…

No output schema declared.

No examples provided.

openclaw_tts_setProvider ~109

Switch the active TTS provider / voice. Wraps `tts.setProvider`.

NameTypeReqDescription
instancestringOptional OpenClaw instance to route this call to (e.g. 'default', 'work'). Falls back to the active default instance, or the OPENCLAW_GATEWAY_URL/TOKEN env vars when set. List configured instances wi…
modelstring
providerstringyes
voicestring

No output schema declared.

No examples provided.

openclaw_tts_status ~94

Get the TTS subsystem status (enabled, current provider, voice). Wraps `tts.status`. Read-only.

NameTypeReqDescription
instancestringOptional OpenClaw instance to route this call to (e.g. 'default', 'work'). Falls back to the active default instance, or the OPENCLAW_GATEWAY_URL/TOKEN env vars when set. List configured instances wi…

No output schema declared.

No examples provided.

openclaw_update_run ~120

Trigger an update of the gateway itself (pull latest version, restart components). Wraps `update.run`. DESTRUCTIVE — may briefly interrupt running sessions. Confirm before calling.

NameTypeReqDescription
instancestringOptional OpenClaw instance to route this call to (e.g. 'default', 'work'). Falls back to the active default instance, or the OPENCLAW_GATEWAY_URL/TOKEN env vars when set. List configured instances wi…
versionstringSpecific version to install; omit for latest

No output schema declared.

No examples provided.

openclaw_usage_cost ~125

Get usage cost breakdown (per agent, per model, per period). Wraps `usage.cost`. Read-only. Pass period/agent filters if supported.

NameTypeReqDescription
agentIdstring
instancestringOptional OpenClaw instance to route this call to (e.g. 'default', 'work'). Falls back to the active default instance, or the OPENCLAW_GATEWAY_URL/TOKEN env vars when set. List configured instances wi…
sinceMsinteger
untilMsinteger

No output schema declared.

No examples provided.

openclaw_usage_status ~91

Get usage status (token counts, current period, quotas). Wraps `usage.status`. Read-only.

NameTypeReqDescription
instancestringOptional OpenClaw instance to route this call to (e.g. 'default', 'work'). Falls back to the active default instance, or the OPENCLAW_GATEWAY_URL/TOKEN env vars when set. List configured instances wi…

No output schema declared.

No examples provided.

openclaw_voicewake_get ~95

Get the voice-wake configuration (wake word, sensitivity, enabled). Wraps `voicewake.get`. Read-only.

NameTypeReqDescription
instancestringOptional OpenClaw instance to route this call to (e.g. 'default', 'work'). Falls back to the active default instance, or the OPENCLAW_GATEWAY_URL/TOKEN env vars when set. List configured instances wi…

No output schema declared.

No examples provided.

openclaw_voicewake_set ~100

Update the voice-wake configuration. Wraps `voicewake.set`.

NameTypeReqDescription
enabledboolean
instancestringOptional OpenClaw instance to route this call to (e.g. 'default', 'work'). Falls back to the active default instance, or the OPENCLAW_GATEWAY_URL/TOKEN env vars when set. List configured instances wi…
wakeWordstring

No output schema declared.

No examples provided.

openclaw_wake ~111

Wake an agent / session out of idle. Wraps the root-level `wake` method. Pass agentId/sessionId.

NameTypeReqDescription
agentIdstring
instancestringOptional OpenClaw instance to route this call to (e.g. 'default', 'work'). Falls back to the active default instance, or the OPENCLAW_GATEWAY_URL/TOKEN env vars when set. List configured instances wi…
sessionIdstring

No output schema declared.

No examples provided.

openclaw_wizard_cancel ~87

Cancel the active wizard flow without applying its changes. Wraps `wizard.cancel`.

NameTypeReqDescription
instancestringOptional OpenClaw instance to route this call to (e.g. 'default', 'work'). Falls back to the active default instance, or the OPENCLAW_GATEWAY_URL/TOKEN env vars when set. List configured instances wi…

No output schema declared.

No examples provided.

openclaw_wizard_next ~95

Advance the active wizard to its next step (with the user's answer to the current step). Wraps `wizard.next`.

NameTypeReqDescription
instancestringOptional OpenClaw instance to route this call to (e.g. 'default', 'work'). Falls back to the active default instance, or the OPENCLAW_GATEWAY_URL/TOKEN env vars when set. List configured instances wi…

No output schema declared.

No examples provided.

openclaw_wizard_start ~113

Start a setup wizard flow (e.g. agent onboarding, channel pairing). Wraps `wizard.start`. Pass the wizard id / kind.

NameTypeReqDescription
idstring
instancestringOptional OpenClaw instance to route this call to (e.g. 'default', 'work'). Falls back to the active default instance, or the OPENCLAW_GATEWAY_URL/TOKEN env vars when set. List configured instances wi…
kindstring

No output schema declared.

No examples provided.

openclaw_wizard_status ~130

Get the wizard's current step and pending input for a specific session. Wraps `wizard.status`. Wire format (verified live against gateway 2026.4.12+): requires `sessionId`. Read-only.

NameTypeReqDescription
instancestringOptional OpenClaw instance to route this call to (e.g. 'default', 'work'). Falls back to the active default instance, or the OPENCLAW_GATEWAY_URL/TOKEN env vars when set. List configured instances wi…
sessionIdstringyesSession id whose wizard state to inspect.

No output schema declared.

No examples provided.