Skip to main content
Glama
EugenEistrach

mcp-loader

context-test_withTimeout

Test timeout handling by executing an operation with an AbortSignal that aborts after a configurable delay in milliseconds.

Instructions

Execute something with timeout using AbortSignal from context

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
delayMsYesHow long to wait in milliseconds

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

C2.3/5.0
Behavior2/5

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

With no annotations, the description must carry the behavioral burden, but it only hints at 'using AbortSignal from context'. It does not explain what the tool waits for, what result it returns, whether it aborts or errors, or how delayMs interacts with the timeout behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is short and front-loaded, but it uses vague language like 'something' and lacks essential operational detail. It is concise in length but not in clarity, so it falls at the minimum viable level.

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?

Even though the tool is simple with a single parameter, the description is not complete enough for an agent to use it confidently. There is no output schema and no annotations, and the description leaves critical behavioral questions unanswered.

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 input schema fully covers delayMs with the description 'How long to wait in milliseconds', so the schema does the heavy lifting. The tool description adds no additional meaning to this parameter, matching the baseline 3 for full schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose2/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description says 'Execute something with timeout' but never identifies what "something" is or what operation this tool actually performs. It is close to a tautology of the name 'withTimeout' and does not distinguish this from sibling context-test_* tools.

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?

The description provides no guidance about when to use this tool versus alternatives such as context-test_contextInfo or context-test_trackUsage. There are no context conditions, prerequisites, or exclusions mentioned.

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