Skip to main content
Glama
pbajkovic-hub

tv-cdp-mcp

tv_resume_alerts

Destructive

Restart paused alerts so they begin firing again, webhooks included. Get back each alert's previous and current active state to confirm the change.

Instructions

MUTATES: restart (resume) the given alerts via AlertsCollection.restartAlerts - they begin firing again, webhooks included. Returns per-id { previous_active, current_active } read back from the server, so tv_pause_alerts reverses it. Verified live 2026-09-04 on a price alert.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idsYesalert ids to resume
layoutNochart layout id, target id, or 0-based index; default = the chart tab that is actually painting
expect_layoutNolayout id the tab is expected to show right now; the call refuses if it differs (a tab keeps its target id when the user opens another layout in it)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already indicate mutation and destructiveness; the description adds useful context by revealing that webhooks are re-enabled, that the response contains per-id previous/current state read from the server, and that the operation is reversible via tv_pause_alerts. It does not contradict the annotations and provides meaningful beyond-schema behavior.

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?

Three compact sentences front-load the mutation verb and effect, then cover return values, reversibility, and a verification note. There is no filler or repetition; each clause adds information useful to the agent.

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?

With a fully documented schema, safety annotations, and no output schema, the description supplies the missing return-shape summary and the key side-effect warning about webhooks. An agent has enough information to invoke the tool correctly without external documentation.

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%, so the input schema already documents all three parameters. The description's 'per-id' note concerns output rather than parameter meaning, so the description does not need to compensate. Baseline 3 is appropriate.

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 names a precise verb ('restart (resume)') and resource ('the given alerts'), and explains the concrete effect ('they begin firing again, webhooks included'). It also ties directly to AlertsCollection.restartAlerts and differentiates itself from tv_pause_alerts by noting the inverse relationship.

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 intended use is clear: resume alerts that were paused, with tv_pause_alerts explicitly identified as the reverse operation. It lacks a full 'do not use when...' exclusion list, but the context is strong enough for an agent to select this tool correctly among siblings.

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