cloudflare-api-mcp
@zueai-mcp
About cloudflare-api-mcp
Lightweight MCP server to give your Cursor Agent access to the Cloudflare API.
Basic information
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"cloudflare-api-mcp-zueai-mcp": {
"command": "bun",
"args": [
"create",
"mcp",
"--clone",
"https://github.com/zueai/cloudflare-api-mcp"
]
}
}
}Tools
No tools detected
We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.
Overview
What is cloudflare-api-mcp?
A lightweight Model Control Protocol (MCP) server bootstrapped with create-mcp and deployed on Cloudflare Workers. It enables AI agents (such as Cursor) to interface with the Cloudflare REST API.
How to use cloudflare-api-mcp?
Run the automated install script (bun create mcp --clone https://github.com/zueai/cloudflare-api-mcp), configure in Cursor Settings → MCP, and upload your Cloudflare API key and email as worker secrets using bunx wrangler secret put. For local development, add credentials to a .dev.vars file.
Key features of cloudflare-api-mcp
- Deployed on Cloudflare Workers for serverless execution.
- Automatically exposes class methods as MCP tools.
- Integrates with the full Cloudflare REST API.
- Extensible by adding new methods to the MyWorker class.
- Lightweight and actively developed.
Use cases of cloudflare-api-mcp
- Automate DNS record creation, updates, and deletions via an AI agent.
- Manage Cloudflare zones, certificates, or other resources programmatically.
- Embed Cloudflare API operations into Cursor workflows.
FAQ from cloudflare-api-mcp
What is the purpose of cloudflare-api-mcp?
It allows AI agents (like Cursor) to call Cloudflare REST API endpoints through the Model Control Protocol, enabling automated infrastructure management.
How do I install cloudflare-api-mcp?
Clone the repository using bun create mcp --clone https://github.com/zueai/cloudflare-api-mcp, then add the server to Cursor settings and deploy with your Cloudflare API key and email as worker secrets.
What tools are available?
Every method in the MyWorker class in src/index.ts becomes an MCP tool. The README provides an example for createDNSRecord; the current full list is in the source code.
How can I add new tools?
Add a method to the MyWorker class with JSDoc comments (first line as description, @param tags for parameters, @return for return type). The method is automatically exposed as an MCP tool.
Does cloudflare-api-mcp require any specific runtime or credentials?
Yes, it runs on Cloudflare Workers and requires Bun for local development. You need a Cloudflare API key and email, set as worker secrets (CLOUDFLARE_API_KEY and CLOUDFLARE_API_EMAIL).
More Developer Tools MCP servers
sentry-mcp
getsentryAn MCP server for interacting with Sentry via LLMs.
Deepwiki MCP Server
regenrek📖 MCP server for fetch deepwiki.com and get latest knowledge in Cursor and other Code Editors
Hello World MCP Server (Reference Extension)
anthropicsDesktop Extensions: One-click local MCP server installation in desktop apps
Huoshan Test
volcengineFastAPI-MCP
tadata-orgExpose your FastAPI endpoints as Model Context Protocol (MCP) tools, with Auth!
Comments