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

コメント

「開発者ツール」の他のコンテンツ