Set up OpenClaw MCP servers
MCP (Model Context Protocol) connects OpenClaw to your tools. Full setup guide for the most popular MCP servers.
What is MCP?
Model Context Protocol — an open standard from Anthropic, adopted by OpenClaw. Defines how agents call tools: function, auth, inputs, outputs. An MCP server bundles a tool provider (e.g. Notion).
Install Notion MCP
npm install -g @modelcontextprotocol/server-notion
openclaw mcp add notion --token YOUR_NOTION_TOKENCreate a Notion integration token via notion.so/my-integrations, explicitly add workspaces to the integration.
Google Drive MCP
npm install -g @modelcontextprotocol/server-gdrive
openclaw mcp add gdriveOAuth flow in browser, restrict to specific folders. Never give write-all permissions.
GitHub MCP
npm install -g @modelcontextprotocol/server-github
openclaw mcp add github --token YOUR_GH_PATPersonal Access Token with minimal scopes (repo:read, issues:write) — not org:admin.
Custom MCP server
For proprietary tools (internal CRM, custom API) build a custom MCP server. Template at github.com/modelcontextprotocol/servers. We build these on request — see MCP service.