Skip to main content
Glama
DINQ-labs

openpeoplerouter

Official
by DINQ-labs

endpoint

Inspect a provider call's arguments, documentation, and availability to ensure it can be invoked correctly.

Instructions

Inspect an endpoint's arguments, provider documentation and availability before calling it.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
endpoint_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It conveys a read-only inspection behavior and lists the information returned, but it does not mention permissions, side effects, or explicitly state that the endpoint is not executed.

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 sentence, front-loaded with the action, and contains no filler. Every word contributes to explaining the tool's purpose.

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 tool is simple with one parameter and an output schema, so the description covers the overall purpose and return categories. However, the endpoint_id parameter is undocumented in both the schema and the description, and there are no annotations, leaving the definition not fully self-sufficient.

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%, and the description never mentions endpoint_id, its format, or how to obtain it. Since endpoint_id is required to invoke the tool, this is a significant gap that the description does not compensate for.

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 states a specific verb, 'inspect', and a clear resource: an endpoint's arguments, provider documentation, and availability. The phrase 'before calling it' also distinguishes it from the sibling call_tool, so an agent can tell when this tool is relevant.

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 gives clear usage context by framing this as a pre-call inspection step. It does not explicitly name alternatives or exclusions, but the 'before calling it' instruction is enough to guide an agent toward using this before call_tool.

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