Skip to main content
Glama
NeuronCState

Digital MCP Server

by NeuronCState

digital_export_truth_table_image

Validate a Digital testcase with the simulator, then export its truth table as an SVG or high-resolution PNG image for documentation or sharing.

Instructions

Read embedded Digital Testcase data, validate it with Digital's simulator, and export a polished truth-table/results image as SVG or high-resolution PNG.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYes
formatNopng
output_pathNo
pixel_widthNo
timeout_secondsNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.7/5.0
Behavior3/5

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

With no annotations provided, the description carries full burden for behavioral disclosure. It discloses the pipeline (read, validate, export) and implies side effects (creating an output file via output_path parameter). However, it does not mention whether the input file is modified, what happens on validation failure, or the effect of timeout_seconds. This is a moderate disclosure but not exhaustive.

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 a single, tightly-worded sentence that conveys the core action, resource, and output formats. No fluff or redundant phrases. It is appropriately front-loaded with the primary verb and object, making it easy to scan.

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?

The tool has 5 parameters and no output schema or annotations. The description is too brief to cover essential details: it does not explain what 'embedded Digital Testcase data' looks like, what the return value is (e.g., file path), or how validation errors are reported. For a multi-step process with multiple configuration options, this is insufficient for an agent to call it correctly without external knowledge.

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 0% - the description does not explain any of the 5 parameters. It only hints at format via 'SVG or high-resolution PNG' but fails to clarify the role of 'path', 'output_path', 'pixel_width', or 'timeout_seconds'. Since coverage is low, the description must compensate but does not, leaving agents to infer parameter meanings from names and defaults alone.

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 (read, validate, export) and the resource (embedded Digital Testcase data, truth-table/results image). It clearly distinguishes from siblings like digital_export_rendered_image or digital_export_simulation_image by targeting a specific image type. The verb 'export' and formats 'SVG or PNG' are precise.

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 implies when to use: when you need a truth-table/results image from embedded testcase data. It does not explicitly mention alternatives or exclusions, but the context is clear enough for an agent to decide. Sibling tools like digital_run_tests or digital_export_rendered_image have different purposes, so the description's specificity provides adequate guidance.

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