Skip to main content
Glama

feed_unsubscribe

Idempotent

Stop future polling by removing a feed subscription. Clears deduplication history, so re-subscribing may re-ingest old items; existing memory entries remain.

Instructions

Unsubscribe from a feed and stop future polling.

Removes the subscription and its seen-item deduplication history. Memory entries already written from this feed are NOT deleted, only the subscription is removed. If the feed is re-subscribed later, previously seen items may be re-ingested. Use feed_list() to find the feed_id.

Args: feed_id: ID from feed_list().

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
feed_idYesID from feed_list().

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.47.0
  2. Removedv0.40.1
  3. Addedv0.17.0
  4. Removedv0.16.1
  5. Addedv0.9.0

TDQS

A4.5/5.0
Behavior5/5

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

The description goes well beyond annotations. It discloses that deduplication history is removed, memory entries are not deleted, and re-subscription may re-ingest previously seen items. Annotations only cover idempotent, non-destructive, and open-world hints, so the description provides crucial side-effect context.

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 concise and well-structured. The core action is front-loaded, followed by a clear explanation of side effects and necessary input. No redundant sentences; every line adds value.

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 one-parameter subscription removal, the description fully covers how to call it (feed_list reference), what effect it has (dedup history removal), what it does not do (memory deletion), and future implications (re-subscription). With an output schema present, nothing critical is missing.

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% because feed_id already has 'ID from feed_list()' in the schema. The description repeats this hint but adds no new semantic meaning beyond the schema. Baseline 3 applies since the schema does the heavy lifting.

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 clearly states the action: 'Unsubscribe from a feed and stop future polling.' This is a specific verb (unsubscribe) and resource (feed), and it is distinct from siblings like feed_subscribe and feed_list. No tautology.

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 gives a clear prerequisite (use feed_list() to find the feed_id) and implies the operation is the antonym of feed_subscribe, but it does not explicitly state when not to use it or name alternatives. This is clear context without formal exclusions.

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