PearClaw
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| OPENCLAW_GATEWAY_URL | No | OpenClaw gateway WebSocket URL | ws://127.0.0.1:18788 |
| OPENCLAW_MCP_SESSION | No | Agent session to target | main |
| OPENCLAW_MCP_TIMEOUT | No | Response timeout (ms) | 25000 |
| OPENCLAW_GATEWAY_TOKEN | No | Auth token (if required) | |
| OPENCLAW_MCP_FAIL_OPEN | No | Approve when supervisor unreachable | true |
| OPENCLAW_MCP_INBOX_DIR | No | Drop-file inbox (fallback) | ~/.openclaw/mcp-inbox |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| consult_supervisorA | Consult your OpenClaw supervisor agent before proceeding. Use this before writing files, running commands, or making architectural decisions. Returns: { decision: 'approve'|'block'|'modify', reason: string, suggestion?: string } |
| get_supervisor_messageA | Poll for proactive messages from your OpenClaw supervisor. Call this every ~5 tool calls. Hedy may have injected context, corrections, or guidance. Returns: { message: string|null } — if message is non-null, read it before continuing. |
| notify_supervisorA | Send a one-way update to your OpenClaw supervisor. Use after completing a task, encountering an error, or finishing a session. Does not wait for a response. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 3 tools
Each tool has a distinct purpose: consult for decisions, get for polling messages, notify for one-way updates. No overlap, clearly differentiated by description.
All tool names follow a consistent verb_noun pattern (consult_supervisor, get_supervisor_message, notify_supervisor).
Three tools is on the low end but appropriate for a focused supervisor communication interface. It covers the essential actions without being excessive.
The set covers the core interactions with a supervisor: asking for approval, polling for messages, and sending updates. No obvious gaps for the intended purpose.