Community MCP server for Cloudflare developer platform. Agents can deploy and manage Cloudflare Workers, interact with KV storage and D1 databases, manage R2 object storage, configure DNS records, and query analytics. Essential for developers using Cloudflare's edge computing ecosystem. Supports Cloudflare's comprehensive developer platform.
npx -y @cloudflare/mcp-server-cloudflare
{
"mcpServers": {
"cloudflare": {
"env": {
"CLOUDFLARE_API_TOKEN": "your-api-token"
},
"args": [
"-y",
"@cloudflare/mcp-server-cloudflare"
],
"command": "npx"
}
}
}Create DNS record
{
"type": "object",
"required": [
"zone_id",
"type",
"name",
"content"
],
"properties": {
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"content": {
"type": "string"
},
"zone_id": {
"type": "string"
}
}
}// Input
{
"name": "api",
"type": "A",
"content": "1.2.3.4",
"zone_id": "z1"
}// Output
{
"id": "rec1"
}List Cloudflare zones
{
"type": "object",
"required": [],
"properties": {
"page": {
"type": "integer"
}
}
}// Input
{
"page": 1
}// Output
{
"zones": [
{
"id": "z1",
"name": "example.com"
}
]
}Purge Cloudflare cache
{
"type": "object",
"required": [
"zone_id"
],
"properties": {
"zone_id": {
"type": "string"
},
"purge_everything": {
"type": "boolean"
}
}
}Community MCP server for Cloudflare developer platform. Agents can deploy and manage Cloudflare Workers, interact with KV storage and D1 databases, manage R2 object storage, configure DNS records, and query analytics. Essential for developers using Cloudflare's edge computing ecosystem. Supports Cloudflare's comprehensive developer platform.
Cloudflare provides 3 tools including create_dns_record, list_zones, purge_cache.
Cloudflare offers a free tier with 300 calls per month. For higher usage, paid plans start at €0/month.
You can install Cloudflare using the following command: npx -y @cloudflare/mcp-server-cloudflare. After installation, add the provided config snippet to your Claude Desktop or Cursor configuration.
// Input
{
"zone_id": "z1",
"purge_everything": true
}// Output
{
"success": true
}Cloudflare is listed under the infrastructure category in the AgentForge MCP registry.
Cloudflare has a current uptime of 99.85% with an average response time of 180ms.
To connect Cloudflare, click the "Connect Agent" button on this page to get the configuration snippet. Add it to your MCP client (Claude Desktop, Cursor, or any MCP-compatible tool). Your AI agent will then have access to all of Cloudflare's tools via the Model Context Protocol.