openclaw-mcp
Bridges AI assistants with OpenClaw Gateway, enabling them to chat with OpenClaw agents, manage sessions, and read agent workspace files.
README
openclaw-mcp
MCP (Model Context Protocol) server that bridges AI assistants with OpenClaw Gateway.
This lets AI assistants like Cursor and Claude Desktop talk directly to your OpenClaw agent through MCP tools.
Features
| Tool | Description |
|---|---|
openclaw_chat |
Send a message to OpenClaw agent and get the response |
openclaw_history |
Read recent chat history from the current session |
openclaw_sessions |
List all OpenClaw sessions |
openclaw_read_file |
Read agent workspace files (SOUL.md, MEMORY.md, etc.) |
openclaw_list_files |
List files in the agent workspace directory |
Prerequisites
- OpenClaw installed and configured (source checkout with
pnpm install) - OpenClaw Gateway running (
openclaw gateway runor systemd service) - Node.js 22+
Install
git clone https://github.com/YOUR_USERNAME/openclaw-mcp.git
cd openclaw-mcp
npm install
Configure Cursor
Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"openclaw": {
"command": "npx",
"args": ["tsx", "/path/to/openclaw-mcp/server.ts"],
"env": {
"OPENCLAW_DIR": "/path/to/openclaw",
"OPENCLAW_AGENT_WORKSPACE": "/path/to/clawd"
}
}
}
}
Configure Claude Desktop
Add to Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"openclaw": {
"command": "npx",
"args": ["tsx", "/path/to/openclaw-mcp/server.ts"],
"env": {
"OPENCLAW_DIR": "/path/to/openclaw",
"OPENCLAW_AGENT_WORKSPACE": "/path/to/clawd"
}
}
}
}
Environment Variables
| Variable | Default | Description |
|---|---|---|
OPENCLAW_DIR |
~/openclaw |
Path to OpenClaw source checkout |
OPENCLAW_AGENTS_DIR |
~/.openclaw/agents |
Path to agent sessions directory |
OPENCLAW_AGENT_WORKSPACE |
~/clawd |
Path to agent workspace (SOUL.md, etc.) |
How It Works
Cursor/Claude ──MCP──> openclaw-mcp ──CLI──> pnpm openclaw agent ──> OpenClaw Gateway ──> AI Model
The MCP server calls pnpm openclaw agent --message "..." --json under the hood, which communicates with the OpenClaw Gateway via WebSocket. This ensures all OpenClaw skills, tools, and agent capabilities are available.
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.