
How to add Cloudflare Documentation MCP (Remote) to Cursor
Cloudflare's hosted remote MCP server for searching Cloudflare developer docs; no auth required. Paste the config into ~/.cursor/mcp.json and restart Cursor.
Last updated June 15, 2026 · 3.1k★ · http · no auth · official
Cursor config for Cloudflare Documentation MCP (Remote)
Add remote URL https://docs.mcp.cloudflare.com/mcp to your MCP client{
"mcpServers": {
"cloudflare-documentation-mcp-remote": {
"url": "https://docs.mcp.cloudflare.com/mcp",
"type": "streamable-http"
}
}
}Remote server — no local install needed. Restart the client after saving the config.
Setup steps
- 1Open Cursor → Settings → MCP → Add new MCP server (or edit ~/.cursor/mcp.json directly).
- 2Paste the Cloudflare Documentation MCP (Remote) config below into the "mcpServers" object.
- 3Fill in placeholder secrets, then save.
- 4Cursor reloads MCP servers automatically — check Settings → MCP for a green status dot.
- 5Ask Cursor to use one of Cloudflare Documentation MCP (Remote)'s tools to confirm it's connected.
Before you start
- An MCP client that supports remote/HTTP MCP servers (e.g. Claude Desktop, Cursor, VS Code), OR Node.js 18+ to run the `mcp-remote` proxy for clients without native remote support
- No Cloudflare account, API token, or authentication of any kind — the docs server reads only public documentation
What Cloudflare Documentation MCP (Remote) can do in Cursor
search_cloudflare_documentationSearch the Cloudflare developer docs and return synthesized, citation-backed answers across Workers, Pages, R2, Zero Trust, DNS and more.
migrate_pages_to_workers_guideReturns the step-by-step guide for migrating a Cloudflare Pages project to Workers, including requirements and common pitfalls.
Security
The documentation server is read-only and unauthenticated, so risk is minimal; Cloudflare's storage/compute remotes (e.g. Workers Bindings) require a scoped API token and can modify R2/KV/D1 resources. Use a least-privilege token for those.
Cloudflare Documentation MCP (Remote) + Cursor FAQ
Where is the Cursor config file?
Cursor reads MCP servers from ~/.cursor/mcp.json. Paste the Cloudflare Documentation MCP (Remote) config there under the "mcpServers" key and restart the client.
Is Cloudflare Documentation MCP (Remote) safe to use with Cursor?
The documentation server is read-only and unauthenticated, so risk is minimal; Cloudflare's storage/compute remotes (e.g. Workers Bindings) require a scoped API token and can modify R2/KV/D1 resources. Use a least-privilege token for those.
Does the Cloudflare Documentation MCP server require authentication?
No. It serves only public documentation, so there is no API token, OAuth, or login step — just point your client at the URL.
How is this different from Cloudflare's other MCP servers?
The other servers in the same repo (Workers Bindings, Observability, Logpush, AI Gateway, etc.) act on your account and require a Cloudflare API token with the right scopes. The Documentation server only reads published docs and needs no auth.
My client doesn't support remote MCP servers — can I still use it?
Yes. Run it through the mcp-remote proxy: configure a stdio command server with `npx mcp-remote https://docs.mcp.cloudflare.com/mcp`, which requires Node.js 18+.