Skip to main content
Glama

Stop

stop

Halt an ongoing SimInTech simulation run. Interrupt active calculations to regain control of the modeling session.

Instructions

Остановить расчёт.

Вызов неблокирующий и не подтверждает, что расчёт шёл: ProjectStop сообщает об успехе и на стоящем проекте. Состояние проверяйте по get_time.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

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?

No annotations are provided, so the description carries the full burden. It discloses that the call is non-blocking, that it reports success even on a stopped project, and that state should be checked via get_time. This is valuable behavioral information beyond the schema.

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 two sentences, front-loaded with the primary action, followed by the key behavioral caveats. It is concise and every sentence earns its place.

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?

The tool has an output schema (not shown), so return values need not be described. The description covers the action, the non-blocking nature, and the false-success caveat, plus a pointer to get_time for state verification. This is complete for a zero-parameter stop tool.

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, so schema description coverage is trivially 100%. The description does not need to add parameter information, and it correctly omits it. Baseline for 0 parameters is 4.

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 explicitly states the action: 'Остановить расчёт' (stop the calculation). This is a clear verb and resource, and it is unambiguous among siblings like run, step, and get_time. It even adds a nuance about the success report, which further clarifies its purpose.

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 provides guidance on how to use it: it notes the call is non-blocking and does not confirm whether the calculation was running, and instructs to verify state via get_time. This gives clear context on usage and points to an alternative for verification, though it does not explicitly state when not to use it.

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