Skip to main content
Glama
chilldude

telegram-claude-mcp

by chilldude

notify_user

Send a Telegram notification to users during coding tasks without waiting for a reply. Keep them informed of progress or completion instantly.

Instructions

Send a notification message to the user via Telegram. Does not wait for a response.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
messageYesThe notification message to send

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4/5.0
Behavior4/5

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

No annotations are provided, so the description carries the behavioral burden. It discloses the key non-blocking trait ('Does not wait for a response'), which is beyond what the schema shows. It could add delivery failure behavior, but for a simple notify tool the core behavior is transparent.

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 short, purposeful sentences. The action and channel are front-loaded, and the distinguishing behavior is stated compactly. No unnecessary words.

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?

For a simple one-parameter tool with no output schema, the description covers the purpose, channel, and behavioral caveat. It is nearly complete; only explicit routing to ask_user is missing, but that gap is already accounted for under usage guidelines.

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%, so the parameter is already fully documented in the schema. The description adds no parameter-specific semantics beyond what the schema provides, matching the baseline for high coverage.

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 ('Send'), names the resource ('notification message'), identifies the channel ('via Telegram'), and adds a behavioral qualifier ('Does not wait for a response') that distinguishes it from the sibling ask_user. An agent can tell exactly what this tool does.

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

Usage Guidelines3/5

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

The description implies usage: use this for fire-and-forget notifications where no reply is expected. However, it never explicitly names the alternative (ask_user) or states when to choose it instead, leaving the when-not-to-use guidance to inference.

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

Deploy Server

Other Tools