Odel
OpenClaw MCP Server

OpenClaw MCP Server

Local
@freema184TypeScriptMITUpdated 3w ago

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).

npmopenclaw-mcpv1.7.0

Run

npx -y openclaw-mcp

MCP client config

{
  "mcpServers": {
    "openclaw-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "openclaw-mcp"
      ]
    }
  }
}
Dockerghcr.io/freema/openclaw-mcp:1.7.0

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"
      ]
    }
  }
}