Skip to main content
Glama
Johnhyeon

TelegramLens

by Johnhyeon

telegram_status

Read-onlyIdempotent

Check Telegram login, collection, and daemon status for anomalies. When degraded or failed, return recovery instructions and direct users to support.

Instructions

로그인·수집 상태와 백그라운드 수집 데몬 상태를 반환합니다.

status(healthy/degraded/failed)와 last_error.code 를 보고, 문제가 있으면 recovery.instruction 을 사용자에게 그대로 전하세요. 문제가 있으면 LeetKit Manager의 [진단]이나 상단 [지원 문의]를 안내하세요. 터미널 명령은 안내하지 마세요.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.4.3

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already establish a safe read-only, idempotent operation. The description adds meaningful context beyond that: it explains health triage behavior, requires passing recovery.instruction through unchanged, and forbids terminal-command guidance. No contradictions exist.

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?

Four short, purposeful sentences in Korean. The main purpose is front-loaded, followed by concrete triage rules and an explicit boundary. Every sentence earns its place with no redundant restatement of the schema.

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?

For a zero-parameter, read-only status tool with an output schema, the description is complete. It covers purpose, expected status values, user-facing actions, and a clear prohibition. Nothing essential is missing.

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

Parameters4/5

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

There are zero parameters and 100% schema coverage, so the description has no parameters to document. The baseline for param-less tools is 4, and the description correctly focuses on output semantics and user handling instead.

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 clear verb and resource: it returns login/collection status and background daemon status. It also names the meaningful fields (status, last_error.code, recovery.instruction), which distinguishes it from sibling tools that send, sync, or search data.

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 evident: check this tool for login/collection/daemon health. It gives strong post-invocation guidance – surface recovery.instruction verbatim, direct users to LeetKit Manager diagnostics/support, and never provide terminal commands – but it does not explicitly name alternatives or when-not-to-use conditions.

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