Skip to content
Cloudflare Docs

Cloudflare's own MCP servers

Cloudflare runs a catalog of managed remote MCP Servers which you can connect to using OAuth on clients like Claude, Windsurf, our own AI Playground or any SDK that supports MCP.

These MCP servers allow your MCP Client to read configurations from your account, process information, make suggestions based on data, and even make those suggested changes for you. All of these actions can happen across Cloudflare's many services including application development, security and performance. They support both the streamble-http transport via /mcp and the sse transport (deprecated) via /sse.

Server NameDescriptionServer URL
Documentation serverGet up to date reference information on Cloudflarehttps://docs.mcp.cloudflare.com/mcp
Workers Bindings serverBuild Workers applications with storage, AI, and compute primitiveshttps://bindings.mcp.cloudflare.com/mcp
Workers Builds serverGet insights and manage your Cloudflare Workers Buildshttps://builds.mcp.cloudflare.com/mcp
Observability serverDebug and get insight into your application's logs and analyticshttps://observability.mcp.cloudflare.com/mcp
Radar serverGet global Internet traffic insights, trends, URL scans, and other utilitieshttps://radar.mcp.cloudflare.com/mcp
Container serverSpin up a sandbox development environmenthttps://containers.mcp.cloudflare.com/mcp
Browser rendering serverFetch web pages, convert them to markdown and take screenshotshttps://browser.mcp.cloudflare.com/mcp
Logpush serverGet quick summaries for Logpush job healthhttps://logs.mcp.cloudflare.com/mcp
AI Gateway serverSearch your logs, get details about the prompts and responseshttps://ai-gateway.mcp.cloudflare.com/mcp
AI Search serverList and search documents on your AI Searchshttps://autorag.mcp.cloudflare.com/mcp
Audit Logs serverQuery audit logs and generate reports for reviewhttps://auditlogs.mcp.cloudflare.com/mcp
DNS Analytics serverOptimize DNS performance and debug issues based on current set uphttps://dns-analytics.mcp.cloudflare.com/mcp
Digital Experience Monitoring serverGet quick insight on critical applications for your organizationhttps://dex.mcp.cloudflare.com/mcp
Cloudflare One CASB serverQuickly identify any security misconfigurations for SaaS applications to safeguard users & datahttps://casb.mcp.cloudflare.com/mcp
GraphQL serverGet analytics data using Cloudflare's GraphQL APIhttps://graphql.mcp.cloudflare.com/mcp
Agents SDK Documentation serverToken-efficient search of the Cloudflare Agents SDK documentationhttps://agents.mcp.cloudflare.com/mcp

Check our GitHub page to know how to use Cloudflare's remote MCP servers with different MCP clients.

Agents SDK Documentation server

The Agents SDK Documentation server provides a token-efficient search tool for the Cloudflare Agents SDK documentation. This server is particularly useful when building with the Agents SDK, allowing you to quickly find relevant documentation without consuming excessive tokens.

Available tools

The server exposes one tool:

  • search-agent-docs: Search the Cloudflare Agents SDK documentation using natural language queries
    • query (string): Query string to search for (for example, agent hibernate, schedule tasks)
    • k (number, optional): Number of results to return (default: 5)

How it works

The server fetches documentation from GitHub, chunks it using a recursive chunker, and indexes it with Orama. The index is cached in KV for one day. Search uses BM25 with stemming enabled, which allows natural language queries like "hibernation" to match with "hibernate" for better results.

Usage example

Connect to the server at https://agents.mcp.cloudflare.com/mcp in your MCP client. You can then use queries like:

  • agent hibernate - Find information about agent hibernation
  • schedule tasks - Learn about task scheduling
  • tool calling - Discover how to implement tool calling

The server returns relevant documentation chunks with their file names and full content URLs, making it easy to find the information you need while building agents.

Rate limiting

The server is designed to avoid GitHub rate limiting by caching documentation. If you are self-hosting this server, you can set the GITHUB_TOKEN environment variable to increase your rate limits.