Skip to main content
Glama
Maxsh

telegram-mcp

by Maxsh

check_unread_messages

Retrieves unread messages from Telegram private chats and groups to help you track missed conversations. Supports limiting results, filtering only unread chats, and including channels.

Instructions

Check for unread messages in private chats and groups

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoNumber of chats to check (default: 50, max: 200)
onlyWithUnreadNoOnly return chats with unread messages (default: true)
includeChannelsNoInclude channels in addition to private chats and groups (default: false)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description carries the full behavioral burden, yet it says nothing about read-only safety, return shape, pagination, or whether unread state is mutated. The verb 'check' weakly implies a read, but nothing concrete is disclosed.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single front-loaded sentence with no filler. It is efficient, though the brevity contributes to the gaps in guidance and behavioral disclosure rather than compensating for them.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a zero-parameter-required read tool with full schema coverage and no output schema, this is minimally viable. The description omits any behavioral context that would let an agent reason about results or side effects.

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 all three parameters (limit, onlyWithUnread, includeChannels) are fully documented in the schema. The description adds no parameter meaning beyond that, so the baseline 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb ('Check') and resource ('unread messages') with a scope qualifier ('private chats and groups'). It is clearly distinct from siblings like search_messages or get_recent_messages, though it never names an alternative to reinforce the distinction.

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

Usage Guidelines2/5

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

No when-to-use guidance, no exclusions, and no reference to the natural complement mark_messages_read. An agent must infer that this is the polling tool for unread status rather than a general message fetcher.

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