AgentHubAgentHub

OpenClaw MCP Server

MCP ServerMCP Registry官方收录

io.github.freema/openclaw-mcp · v1.5.0

MCP server bridging Claude.ai/Desktop with self-hosted OpenClaw via OAuth 2.1.

概览

OpenClaw MCP Server 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "openclaw-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "openclaw-mcp"
      ],
      "env": {
        "OPENCLAW_URL": "<OPENCLAW_URL>",
        "OPENCLAW_GATEWAY_TOKEN": "<OPENCLAW_GATEWAY_TOKEN>"
      }
    }
  }
}

环境变量

OPENCLAW_URL必填

URL of your OpenClaw gateway

OPENCLAW_GATEWAY_TOKEN必填secret

Bearer token for OpenClaw gateway authentication

OPENCLAW_MODEL可选

Model name for chat completions (e.g. 'openclaw' or 'openclaw/<agentId>')

OPENCLAW_TIMEOUT_MS可选

Request timeout in milliseconds

OPENCLAW_URL必填

URL of your OpenClaw gateway

OPENCLAW_GATEWAY_TOKEN必填secret

Bearer token for OpenClaw gateway authentication

OPENCLAW_MODEL可选

Model name for chat completions

相关资源

统一 Manifest

{
  "id": "io.github.freema/openclaw-mcp",
  "type": "mcp-server",
  "version": "1.5.0",
  "displayName": "OpenClaw MCP Server",
  "description": "MCP server bridging Claude.ai/Desktop with self-hosted OpenClaw via OAuth 2.1.",
  "repository": {
    "url": "https://github.com/freema/openclaw-mcp",
    "source": "github"
  },
  "homepage": "https://openclaw-mcp.cloud",
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "openclaw-mcp",
        "version": "1.5.0",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "OPENCLAW_URL",
            "description": "URL of your OpenClaw gateway",
            "isRequired": true
          },
          {
            "name": "OPENCLAW_GATEWAY_TOKEN",
            "description": "Bearer token for OpenClaw gateway authentication",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "OPENCLAW_MODEL",
            "description": "Model name for chat completions (e.g. 'openclaw' or 'openclaw/<agentId>')"
          },
          {
            "name": "OPENCLAW_TIMEOUT_MS",
            "description": "Request timeout in milliseconds"
          }
        ]
      },
      {
        "registryType": "oci",
        "identifier": "ghcr.io/freema/openclaw-mcp:1.5.0",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "OPENCLAW_URL",
            "description": "URL of your OpenClaw gateway",
            "isRequired": true
          },
          {
            "name": "OPENCLAW_GATEWAY_TOKEN",
            "description": "Bearer token for OpenClaw gateway authentication",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "OPENCLAW_MODEL",
            "description": "Model name for chat completions"
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.freema/openclaw-mcp",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.freema%2Fopenclaw-mcp/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
OpenClaw MCP Server — MCP Server 安装与配置 · AgentHub