Skip to main content
Glama

cloudflare_purge_cache

Purge Cloudflare CDN cache for a site.

Without urls: purges all cached content for the site's subdomain. With urls: purges only the specified URLs (max 30 per call).

Requires: API key with write scope.

Args: slug: Site identifier urls: Optional list of specific URLs to purge (e.g. ["https://my-site.borealhost.ai/style.css"])

Returns: {"purged": true, "scope": "host", "domain": "my-site.borealhost.ai"}

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugYes
urlsNo

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations, the description carries the full burden of disclosure. It mentions the API key requirement, the max of 30 URLs, the difference between global and targeted purging, and an example return payload. It does not explicitly state that purging is irreversible, but the term 'purge' is unambiguous for cache operations. This adds substantial behavioral context beyond the bare schema.

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

Conciseness5/5

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

The description is compact and well-organized. The main behavior is stated in two sentences, followed by a 'Requires' line, an 'Args' section, and a 'Returns' section. Every sentence adds value, and the return example is given in a code-style block. There is no redundant or extraneous content.

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

Completeness5/5

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

For a tool with two parameters and no output schema, the description provides everything needed: clear input semantics, behaviors for both modes, a constraint (max 30), a prerequisite (API key), and an example return value. It is sufficiently complete for an agent to invoke correctly without additional context.

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

Parameters4/5

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

The schema provides only titles, so the description compensates by explaining both parameters: 'slug: Site identifier' and 'urls: Optional list of specific URLs to purge' with a concrete example. This gives the agent meaningful guidance on input format and purpose, though it could go further by specifying the string format for slug (e.g., a domain or ID).

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

Purpose5/5

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

The description opens with a specific verb and resource: 'Purge Cloudflare CDN cache for a site.' It immediately clarifies the two modes (with and without urls) and the effect of each. This distinguishes it from sibling tools like cache_flush by focusing on Cloudflare and the exact behavior.

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

Usage Guidelines4/5

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

The description clearly states when to use each mode: 'Without urls: purges all cached content... With urls: purges only the specified URLs.' It also mentions the requirement for a write-scoped API key. However, it does not explicitly mention alternative tools or when not to use this tool, so it falls slightly short of a 5.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.6/5.0
Disambiguation3/5

Several tools have overlapping boundaries, such as add_domain_dns vs manage_dns for DNS records, create_backup vs create_snapshot vs create_b2_snapshot for saved states, and write_file vs upload_file for file writing. Most tools are distinct, but these near-duplicates require agents to read descriptions carefully to avoid misselection.

Naming Consistency3/5

The naming pattern is mostly consistent verb_noun in snake_case (e.g., list_* , create_*, delete_*), but there are noticeable deviations: 'add' vs 'create' for similar operations, 'delete' vs 'remove', and outliers like manage_dns, whoami, and scale. The overall style is readable but not perfectly uniform.

Tool Count2/5

144 tools is far beyond the 'too many' threshold and would be unwieldy for agents to navigate. While the server covers a broad hosting platform with many distinct resources, the sheer number makes it difficult for each tool to earn its place, and many are simple list/get variants that could be consolidated.

Completeness4/5

The tool surface is remarkably comprehensive, covering site lifecycle, domains/DNS, compute instances/volumes, backups/snapshots, file management, databases, WordPress administration, email, security, monitoring, billing, webhooks, and support. A notable gap is the lack of a direct list_sites tool—agents must infer site slugs from list_subscriptions—but overall the domain is well covered.