Skip to main content
Glama

check_task

Read-only

Check the status of an asynchronous operation using its callback key. Pass the key from an InvAPI response to see if it is still running (Not ready) or completed successfully (OK).

Instructions

Проверка статуса асинхронной операции по callback-ключу (eq_callback/check). Многие операции InvAPI (вкл/выкл питания, заказ, переустановка, снапшоты) возвращают {"result":"OK","callback":"<ключ>"}. Передайте этот ключ сюда, чтобы узнать статус: result="Not ready" — операция ещё идёт; result="OK" — завершена успешно (после этого ключ сгорает). Деплой сервера может занимать 10–30 минут.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
keyYesCallback-ключ из ответа асинхронной операции

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.5/5.0
Behavior5/5

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

Beyond the readOnlyHint and openWorldHint annotations, the description reveals important behavior: the callback key is single-use and 'burns' after successful completion, status values are 'Not ready' vs 'OK', and deployment can take 10–30 minutes. This is meaningful context an agent needs for polling behavior.

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, front-loaded with the core purpose, and every sentence adds useful detail: callback source, result statuses, key consumption, and timing. No filler or redundancy.

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 single-parameter polling tool with no output schema, the description covers what the tool does, how to call it, what results mean, and the side effect of key consumption. An agent has enough guidance to use it correctly without further documentation.

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?

The schema already fully documents the single 'key' parameter with 100% coverage, so the description is not required to add parameter semantics. It does reinforce that the key comes from an async operation, but this is essentially the same information as the schema description.

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 ('Проверка статуса асинхронной операции') and a clear resource (callback-key). It also explains how this is distinct: it is the companion to operations that return a callback key, so an agent can tell it apart from the many sibling tools.

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?

It explicitly explains when to use the tool: when an InvAPI operation returns a callback key, pass that key here. It also describes expected result values and that the key is consumed on success corrected. It does not name alternatives because no sibling tool covers async status checks, but the usage context is clear.

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