Skip to main content
Glama
raimondasl

worldparts

by raimondasl

export_system

Read-only

Export a water-handling system as EPANET .inp for simulation. Provides CMH and Darcy-Weisbach units; notes detail approximations for unsupported faucets and heaters.

Instructions

Export a system as EPANET .inp text (units CMH, Darcy-Weisbach).

Faucets and heaters are unsupported. notes: what the export approximates.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
targetNo'wntr_inp' (EPANET .inp via WNTR).wntr_inp
system_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
textYes
notesNo
targetYes
system_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and openWorldHint=false, so the description is consistent. It adds context about unsupported elements (faucets, heaters) and notes that the export approximates, which is valuable beyond the annotations. No contradiction.

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 extremely concise—two short sentences. The purpose is front-loaded, and the limitation notes are placed efficiently. No unnecessary words or repetition.

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

Completeness3/5

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

The description covers the core purpose and key limitations, and an output schema exists. However, it lacks guidance on when to use the tool versus siblings and does not mention error handling or return format details. Given its simplicity, it is adequate but not fully complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 50%: the target parameter has a description, but system_id has none. The tool description does not elaborate on parameters—it doesn't explain system_id format or provide usage details. Since coverage is below 50%, the description should compensate but doesn't.

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 clearly states the tool's function: 'Export a system as EPANET .inp text' with specific units and method (CMH, Darcy-Weisbach). This is a specific verb-resource pair that distinguishes it from sibling tools like get_system or list_components. The purpose is 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 description provides some context (mentions unsupported faucets and heaters) but does not explicitly state when to use this tool over alternatives. It does not reference sibling tools or give conditions for selection. The 'notes' hint about approximation is useful but not a full usage guideline.

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