MCP server bridging Claude.ai/Desktop with self-hosted OpenClaw via OAuth 2.1.
Runs locally over stdio
This server isn't hosted β your MCP client launches it from a package registry. Use one of the commands below, or drop the config into your client (e.g. Claude Desktop).
Run
npx -y openclaw-mcp
MCP client config
{
"mcpServers": {
"openclaw-mcp-server": {
"command": "npx",
"args": [
"-y",
"openclaw-mcp"
]
}
}
}Run
docker run -i --rm ghcr.io/freema/openclaw-mcp:1.7.0
MCP client config
{
"mcpServers": {
"openclaw-mcp-server": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/freema/openclaw-mcp:1.7.0"
]
}
}
}