Skip to main content
Glama

boj_cloud_cloudflare

Manage Cloudflare resources including Workers, D1 databases, KV namespaces, R2 buckets, and DNS zones/records through API operations.

Instructions

Manage Cloudflare resources — Workers, D1 databases, KV namespaces, R2 buckets, DNS zones/records

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
operationYesThe Cloudflare operation
api_tokenNoCloudflare API token (for authenticate)
paramsNoOperation parameters

Implementation Reference

  • The tool logic for `boj_cloud_cloudflare` routes to the generic `invokeCartridge` function, calling the "cloud-mcp" cartridge with a provider argument.
    case "boj_cloud_verpex":
    case "boj_cloud_cloudflare":
    case "boj_cloud_vercel": {
      const result = await invokeCartridge("cloud-mcp", { provider: toolName.replace("boj_cloud_", ""), ...args });
      sendResult(id, { content: [{ type: "text", text: JSON.stringify(result, null, 2) }] });
      break;
    }
  • Schema definition for the `boj_cloud_cloudflare` tool.
      name: "boj_cloud_cloudflare",
      description: "Manage Cloudflare resources — Workers, D1 databases, KV namespaces, R2 buckets, DNS zones/records",
      inputSchema: {
        type: "object",
        properties: {
          operation: { type: "string", enum: ["authenticate", "list-workers", "get-worker", "list-d1", "query-d1", "list-kv", "kv-get", "kv-put", "list-r2", "list-dns-zones", "list-dns-records", "add-dns-record"], description: "The Cloudflare operation" },
          api_token: { type: "string", description: "Cloudflare API token (for authenticate)" },
          params: { type: "object", description: "Operation parameters" },
        },
        required: ["operation"],
      },
    });
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden but offers minimal behavioral insight. It mentions 'manage' which implies both read and write operations, but doesn't disclose authentication requirements, rate limits, error handling, or what 'manage' entails beyond listing resource types. The description is too vague about actual behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that front-loads the core purpose. It wastes no words, though it could be more structured by separating resource types or adding brief context. For a multi-operation tool, this conciseness is reasonable but not optimal.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a complex tool with 12 operations, 3 parameters (including a nested object), no annotations, and no output schema, the description is inadequate. It doesn't explain the tool's scope, authentication flow, error conditions, or return formats. The agent must rely entirely on the input schema without contextual guidance.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema documents all parameters thoroughly. The description adds no parameter-specific information beyond implying the tool handles Cloudflare resources. It doesn't explain the relationship between 'operation' choices and required parameters, or provide context for the 'params' object. Baseline 3 is appropriate when schema does the work.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose as managing Cloudflare resources with specific examples (Workers, D1 databases, KV namespaces, R2 buckets, DNS zones/records). It uses the verb 'manage' which is appropriate, though it doesn't explicitly differentiate from sibling tools like boj_cloud_vercel or boj_cloud_verpex beyond the Cloudflare focus.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites like authentication, compare it to sibling cloud tools, or indicate which operations are appropriate for different scenarios. The agent must infer usage from the operation enum alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/hyperpolymath/boj-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server