Skip to main content
Glama

Describe this server's runtime

demo_describe_runtime
Read-onlyIdempotent

Describes the running MCP server, including version, accepted MCP protocol versions, interpreter and platform versions, and third-party dependency status.

Instructions

Describes the running demo server itself: mcptoon version, the MCP protocol versions it accepts, the interpreter and platform versions behind it, and whether it carries any third-party runtime dependency. ...

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
pythonYesPython interpreter version in this container.
platformYesPlatform triple of the machine answering the call.
tool_countYesTools this server answers tools/list with.
server_nameYesMCP serverInfo name this server reports.
mcptoon_versionYesVersion of the running package.
supported_protocol_versionsYesMCP protocol versions it will negotiate.
third_party_runtime_dependenciesYesList of install requires, or a sentence when running from source.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.7.14

TDQS

B3.4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint, destructiveHint=false and openWorldHint=false, so the safety profile is fully covered. The description adds that the enquiry is about the server's own runtime and that dependency status is reported, which is useful orientation, but it gives no behavioural detail about cost, caching, or freshness of the reported versions.

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

Conciseness4/5

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

A single front-loaded sentence that leads with the verb and resource before listing contents, with no filler. The trailing ellipsis suggests the text is truncated rather than naturally finished, which is mildly awkward but does not hurt selection.

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?

With no parameters, full annotation coverage, and an output schema present, the description does not need to explain return structure, and it correctly stays high level. The one gap is the absence of any routing hint relative to the health/manifest siblings.

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?

The tool takes zero parameters, so the baseline is 4 and there is nothing further the description could usefully add here. No parameter syntax or format details are expected or missing.

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

Purpose4/5

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

States a specific verb ('Describes') and resource ('the running demo server itself') and enumerates the concrete contents: mcptoon version, accepted MCP protocol versions, interpreter/platform versions, and third-party dependency status. It does not explicitly distinguish itself from near-neighbours such as mcptoon_health or mcptoon_manifest, which is the only thing keeping it from a 5.

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?

There is no when-to-use guidance at all: no statement of when an agent should call this rather than mcptoon_health, mcptoon_manifest, or the demo_* diagnostic siblings. The reader must infer the context from the enumerated contents alone.

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