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.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Added

TDQS

A4.5/5.0
Behavior5/5

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

Discloses behaviors beyond annotations: ownership enforcement and the soft-delete (deactivate) behavior, ensuring historical events remain via recent_alerts. This complements the annotations (destructiveHint=false, idempotentHint=true) without contradiction.

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 efficient sentences, front-loaded with the core action, and every clause adds meaningful context without redundancy.

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 simple cancel tool with rich annotations and 100% schema coverage, the description fully covers the action, ownership rule, side effects, and data retention. No output schema is present, but return values are not needed for this operation.

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 coverage is 100% for the single 'id' parameter, and the schema description already explains it as a UUID from subscribe. The description doesn't add parameter-specific details, so the baseline 3 applies.

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 states a specific action ('Cancel a subscription by id') with a clear resource and scope. It distinguishes itself from siblings like subscribe and list_subscriptions by being the dedicated cancellation tool.

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?

Provides clear context: ownership enforcement and the idempotent/non-destructive nature. It doesn't explicitly name alternatives or when-not-to-use, but the context is sufficient for correct selection among siblings.

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/5.0
Disambiguation2/5

The tool set mixes multiple domains (Postmark email, Pipeworx data queries, Polymarket betting, memory utilities) with several overlapping tools. ask_pipeworx and ask_pipeworx_beta are essentially identical, send/send_batch and bounces/bounce are similar, and multiple polymarket analysis tools (polymarket_arbitrage, polymarket_edges, polymarket_edge_tracker) could be confused. Despite detailed descriptions, the sheer number of query and analysis tools increases the chance of misselection.

Naming Consistency3/5

All tool names use lowercase_with_underscores, so the casing is consistent. However, there is no uniform verb_noun pattern: some start with verbs (ask, send, bounce, resolve, validate), while others are noun phrases (server, bounces, recent_alerts, entity_profile). This mixed semantic structure makes it less predictable, but the names are still readable.

Tool Count2/5

41 tools is far above the typical well-scoped range of 3-15. The server combines multiple unrelated domains—email, data lookup, prediction markets, memory, and subscriptions—resulting in a heavyweight and unfocused surface. Most of the tools would be better split into separate, purpose-specific servers.

Completeness2/5

For a server named Postmark, the email side is incomplete: there is no update server configuration, message stream management, or inbound email handling. The Pipeworx data tools provide good read coverage but lack write/management operations for entities. The inclusion of unrelated tools makes the surface feel arbitrary rather than complete for any single domain.