Cloudflare MCP Server
by Cloudflare ยท โญ 1.5k stars ยท updated 1 weeks ago
Manage Cloudflare DNS, Workers, R2 storage, KV, and more through your AI assistant. Configure domains, deploy workers, and manage your Cloudflare infrastructure.
85
Very Good
Quality Score Breakdown
maintenance87/100
community83/100
documentation86/100
compatibility84/100
Use Cases
- โmanage DNS records
- โdeploy Workers
- โconfigure CDN
- โmanage R2 storage
โก One-Click Install Configs
Copy the config below and paste it into your AI client's config file.
๐ค Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"cloudflare": {
"command": "npx",
"args": [
"-y",
"@cloudflare/mcp-server-cloudflare"
],
"env": {
"CLOUDFLARE_API_TOKEN": "YOUR_CLOUDFLARE_TOKEN"
}
}
}
}โก Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"cloudflare": {
"command": "npx",
"args": [
"-y",
"@cloudflare/mcp-server-cloudflare"
],
"env": {
"CLOUDFLARE_API_TOKEN": "YOUR_CLOUDFLARE_TOKEN"
}
}
}
}๐ VS Code
.vscode/mcp.json
{
"mcp": {
"servers": {
"cloudflare": {
"command": "npx",
"args": [
"-y",
"@cloudflare/mcp-server-cloudflare"
],
"env": {
"CLOUDFLARE_API_TOKEN": "YOUR_CLOUDFLARE_TOKEN"
}
}
}
}
}