Skip to main content
Glama
draiqw
by draiqw

tg_schedule

Schedule a Telegram message for a specific time, with delivery even if your device is off. Set the recipient, message, and time using ISO or relative formats to ensure it gets sent.

Instructions

Send a message later. Telegram delivers it even if this machine is off.

Args: chat: recipient. text: message body. when: ISO time ("2026-08-17T09:00") or relative ("+30m", "+2h", "+3d"). A bare ISO time without a zone is read as local time. reply_to: message id to reply to.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
chatYes
textYes
whenYes
reply_toNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.5/5.0
Behavior4/5

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

It discloses important behavior beyond annotations: delivery persists even if the machine is off, bare ISO times are read as local time, and relative time formats are supported. It does not discuss idempotency or duplicate-delivery behavior, but annotations already cover the safety profile and the description adds meaningful operational 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 compact and well-structured: a one-line purpose, a useful delivery guarantee, then a clean Args block. Every sentence adds value, and the most important information is front-loaded.

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 4-parameter action with no output schema, the description gives enough to invoke it correctly, including time format details and the machine-off delivery guarantee. It could additionally mention success/error feedback or how to manage scheduled messages, but nothing essential for calling the tool is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description carries the full burden of explaining parameters. It does this completely: chat is 'recipient,' text is 'message body,' when is explained with ISO and relative examples plus timezone behavior, and reply_to is 'message id to reply to.' This is exactly the compensation needed.

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 opens with 'Send a message later,' which is a specific verb + resource and immediately distinguishes this from immediate-send siblings like tg_send. It also adds the unique scheduling property that delivery happens even if this machine is off.

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 makes the intended use case clear: scheduling a message for later delivery, including when the local machine may be off. It does not explicitly name alternatives or exclusions, but the context is strong enough to guide selection among the many sibling tools.

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