Skip to main content
Glama
jasonmeverett

The Trench MCP Server

stop_downlink_simple

Stop the current data downlink session with no arguments. Returns complete downlink status including total data downloaded.

Instructions

Stop the current data downlink session (no arguments required). Returns complete downlink status including total data downloaded.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4/5.0
Behavior3/5

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

With no annotations, the description must carry the behavioral burden. It does disclose that the tool stops a session and returns complete status including total data downloaded. But it does not state what happens if no session is active, whether stopping is reversible, or whether any downloaded data is retained.

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?

Two compact sentences with no wasted words. The core action is front-loaded, and the return-value note earns its place.

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

Completeness4/5

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

For a zero-argument tool with no output schema, the description covers the action and the return value. It could be slightly more complete by addressing the no-active-session edge case, but overall it gives enough context to invoke the tool correctly.

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 the description explicitly notes 'no arguments required,' which prevents an agent from inventing arguments. The empty schema already implies this, but the description reinforces it clearly.

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 verb ('Stop') and a specific resource ('the current data downlink session'), which clearly distinguishes it from siblings like start_downlink_simple. The meaning is immediately unambiguous.

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

Usage Guidelines3/5

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

The usage context is implied by the wording: it stops the current downlink session, so it would be used when an active downlink exists. However, it never explicitly names start_downlink_simple as the counterpart or says when not to use this tool.

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