Skip to main content
Glama

Unsubscribe from Alerts

unsubscribe
Idempotent

Cancel a subscription by id. Ownership is enforced — you can only cancel your own subscriptions. The row is deactivated (not deleted) so its historical events stay available via recent_alerts.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesSubscription id (uuid) returned by subscribe.

TDQS

A4.2/5.0
Behavior4/5

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

Beyond the annotations (which already indicate mutation and non-destructive), the description adds critical behavioral context: ownership enforcement and the deactivation-vs-deletion distinction, pointing to recent_alerts for historical data.

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?

Two sentences, front-loaded with the core action in the first sentence. Each sentence adds value: the first says what it does, the second explains the behavioral nuance.

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

Completeness4/5

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

The description explains the ownership constraint, the non-destructive behavior, and where historical data remains. For a simple cancellation tool with annotations, this is sufficiently complete. It does not describe the return value, but that's not essential here.

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?

The schema already fully documents the single 'id' parameter with a meaningful description (returned by subscribe). The tool description adds little parameter semantics, but given 100% schema coverage, this is acceptable per baseline.

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 uses a specific verb ('Cancel') and a clear resource ('a subscription by id'), distinguishing it from 'subscribe' and 'list_subscriptions' siblings. It also clarifies the outcome (deactivated, not deleted), which eliminates ambiguity.

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 context is clear: it's the tool to cancel a subscription you own. It doesn't explicitly mention alternatives, but the ownership constraint and the note about historical events provide sufficient guidance. Lacks explicit 'use when' but is evident from the title and description.

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

B3.4/5.0
Disambiguation3/5

Tools are generally distinguishable by name and description, but there are several similar query/verification tools (ask_pipeworx, ask_pipeworx_grounded, deep_research, validate_claim) and multiple meta-tools (discover_tools, suggest_questions), causing some ambiguity for agents.

Naming Consistency2/5

Naming conventions are inconsistent: some tools use verb_noun (search_projects, validate_claim), others are noun_preposition_noun (projects_by_country), single verbs (remember, forget), or compound phrases (generate_llms_txt). No clear pattern.

Tool Count1/5

33 tools is excessive for a server named 'Worldbank Projects', as only 3-4 tools directly relate to Worldbank data. The rest are generic Pipeworx utilities and unrelated domains, making the tool count inappropriate for the server's stated purpose.

Completeness1/5

For the domain of Worldbank Projects, only basic lookup and search tools are provided (search_projects, get_project, projects_by_country). Missing essential CRUD operations, filtering by sector/theme, or project lifecycle management. The server's tool surface is severely incomplete for its intended focus.