Skip to main content
Glama
totonga

odsbox-jaquel-mcp

by totonga

ods_connect_env_list

Read-only

List ODS servers configured via environment variables, returning each server's prefix and URL to identify and connect using ods_connect_env.

Instructions

List all ODS servers configured via environment variables.

Returns each server's prefix and URL so you can identify the right server and connect with ods_connect_using_env(env_prefix='PREFIX').

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.7/5.0
Behavior4/5

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

Annotations already mark the tool as read-only (readOnlyHint: true), and the description adds useful context by specifying the returned data (server prefix and URL). It does not contradict annotations and gives enough behavioral detail for a simple list operation.

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 compact and front-loaded with the core purpose in the first sentence. The second sentence adds valuable connection guidance without redundancy or filler.

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

Completeness5/5

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

For a zero-parameter, read-only list tool with an output schema and annotations, the description is complete. It explains what the tool returns and how to use the result, which is all an agent needs to select and call it correctly.

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?

This tool takes zero parameters, so there are no parameter semantics to document. The description correctly focuses on output and usage, meeting the baseline for a parameterless tool.

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 uses a specific verb ('List') and a specific resource ('ODS servers configured via environment variables'), and states the output (prefix and URL). It clearly differentiates this tool from siblings like ods_connect_using_env by framing this as the lookup step before connecting.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explains when to use the tool: to identify the right server before connecting. It explicitly directs the agent to ods_connect_using_env(env_prefix='PREFIX') afterward, which is actionable guidance that ties the tool to its intended workflow.

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