Home › Development › OpenClaw MCP Server
OpenClaw MCP Server
MCP server bridging Claude.ai/Desktop with self-hosted OpenClaw via OAuth 2.1.
Topics: Coding Agents
Connect
Review any command before running it. Package names and URLs come from the server's own registry entry.
Package (npm 1.7.0)
npx -y [email protected]
Or add to your MCP client config:
{
"mcpServers": {
"openclaw-mcp": {
"command": "npx",
"args": [
"-y",
"[email protected]"
],
"env": {
"OPENCLAW_URL": "<YOUR_VALUE>",
"OPENCLAW_GATEWAY_TOKEN": "<YOUR_VALUE>",
"OPENCLAW_MODEL": "<YOUR_VALUE>",
"OPENCLAW_TIMEOUT_MS": "<YOUR_VALUE>"
}
}
}
}
OPENCLAW_URLrequired — URL of your OpenClaw gatewayOPENCLAW_GATEWAY_TOKENrequired secret — Bearer token for OpenClaw gateway authenticationOPENCLAW_MODEL— Model name for chat completions (e.g. 'openclaw' or 'openclaw/<agentId>')OPENCLAW_TIMEOUT_MS— Request timeout in milliseconds
Package (oci)
docker run -i --rm ghcr.io/freema/openclaw-mcp:1.7.0
Or add to your MCP client config:
{
"mcpServers": {
"openclaw-mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/freema/openclaw-mcp:1.7.0"
],
"env": {
"OPENCLAW_URL": "<YOUR_VALUE>",
"OPENCLAW_GATEWAY_TOKEN": "<YOUR_VALUE>",
"OPENCLAW_MODEL": "<YOUR_VALUE>"
}
}
}
}
OPENCLAW_URLrequired — URL of your OpenClaw gatewayOPENCLAW_GATEWAY_TOKENrequired secret — Bearer token for OpenClaw gateway authenticationOPENCLAW_MODEL— Model name for chat completions
Related servers
Serena MCP: the IDE for your agent
A powerful toolkit for coding, providing semantic retrieval and editing capabilities.
Desktop Commander
MCP server for terminal commands, file operations, and process management
Ouroboros
Pins an acceptance spec; the verify command and expected output never enter the success contract.
CodeGraphContext
An MCP server that indexes local code into a graph database to provide context to AI assistants with a graphical code visualizations for…
terminator
Desktop GUI automation using accessibility APIs. Control Windows, macOS, and Linux applications without vision models or screenshots.…
codemcp
Coding agent with basic read, write and command line tools.
Listed in punkpeye/awesome-mcp-servers (MIT)
Data from the Official MCP Registry