Skip to main content
Glama
resccrew

telegram-mcp

by resccrew

create_group

Create a basic Telegram group with a specified title and add members from a list of users.

Instructions

Create a basic group with the given users.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleYes
usersYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.2/5.0
Behavior2/5

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

There are no annotations, so the description carries the full burden. It correctly implies a mutating operation, but it does not disclose side effects, permission requirements, failure behavior, or any constraints on the group creation.

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 a single, front-loaded sentence with no filler or redundancy. Every word contributes to the core message, which is appropriate for a simple creation tool.

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

Completeness2/5

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

The output schema covers return values and the parameter set is small, but the description still lacks usage context and behavioral caveats that an agent would need when deciding to call this tool. It is minimally informative but not complete enough for confident invocation.

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 0%, but the phrase 'with the given users' adds meaning by indicating that the users array specifies initial members. However, the title parameter is left entirely implicit and no additional value is provided for it.

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 states a specific action ('Create') and a clear resource ('a basic group'), and it identifies the key input ('with the given users'). This is enough for an agent to distinguish it from siblings like create_channel at a glance.

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 guidance is given about when to use this tool versus alternatives such as create_channel or invite_users. The word 'basic' hints at a scope distinction but does not explain it, leaving the agent to infer usage.

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