MCP.so
登录

cloudflare-api-mcp

@zueai-mcp

关于 cloudflare-api-mcp

Lightweight MCP server to give your Cursor Agent access to the Cloudflare API.

基本信息

分类

开发工具

许可证

MIT license

运行时

node

传输方式

stdio

发布者

zueai-mcp

配置

使用下面的配置,将此服务器添加到你的 MCP 客户端。

{
  "mcpServers": {
    "cloudflare-api-mcp-zueai-mcp": {
      "command": "bun",
      "args": [
        "create",
        "mcp",
        "--clone",
        "https://github.com/zueai/cloudflare-api-mcp"
      ]
    }
  }
}

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

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).

评论

开发工具 分类下的更多 MCP 服务器