Skip to main content
Glama
totonga

odsbox-jaquel-mcp

by totonga

data_get_quantities

Read-only

Retrieve available measurement quantities for a given submatrix ID. Use it to identify valid quantities before querying measurement data.

Instructions

Get available measurement quantities for a submatrix.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
submatrix_idYesID of the submatrix

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, so the read-only nature is covered. The description adds the notion of 'available quantities' but does not disclose additional behavior such as output shape, error conditions, or relationship to other data operations. No contradiction exists.

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?

A single, front-loaded sentence that conveys the operation and target resource with no wasted words. It is appropriately concise for a simple one-parameter tool.

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 simple read-only tool with one parameter, an output schema, and a readOnlyHint annotation, the description is sufficient. It could mention when to use this tool, but the low complexity and existing structured information keep the gap minor.

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 schema covers the only parameter fully, including a description for submatrix_id. The tool description adds no extra parameter context, but the baseline of 3 applies when schema coverage is complete.

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?

The description states a specific action ('Get') and resource ('available measurement quantities for a submatrix'), which distinguishes it from sibling operations like data_read_submatrix. However, it does not explicitly contrast itself with any sibling, so it is clear but not fully differentiating.

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?

No when-to-use guidance is provided, nor are alternative tools mentioned. The description gives no indication of when to choose this over related data tools such as data_read_submatrix or data_generate_fetcher_script.

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