Skip to main content
Glama

Plan a route

plan_route
Read-only

Turn a goal and a budget into an ordered list of paid endpoints that could reach it, with a cost estimate and what has been verified about each step. Moves no money and buys nothing: it returns the plan for you to run yourself.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
goalYes
min_gradeNo
budget_usdYes

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, and the description reinforces this by saying it 'Moves no money and buys nothing.' It adds meaningful behavioral context about what the tool returns: ordered list, cost estimate, and verification state per step. This goes beyond the annotations and helps the agent set expectations.

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 only two sentences, front-loaded with the core function and output, followed by a necessary clarification about non-execution. There is no filler or redundancy; every sentence earns its place.

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?

Given there is no output schema, the description does a good job enumerating what the return value contains: ordered paid endpoints, cost estimate, and verified-step details. It also clarifies side-effect behavior. Minor gaps remain around parameter meaning, but the overall tool behavior is sufficiently described for an agent to use it correctly.

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%, so the description must compensate, but it only mentions 'goal' and 'budget' at a high level. It does not explain the min_grade parameter at all, nor the budget_usd decimal-string format, nor how goal language or grade filtering affects the plan. This leaves a required and an optional parameter underspecified.

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 ('Turn') and resource ('a goal and a budget' into a route), and clearly defines the result as an ordered list of paid endpoints with cost estimate and verification details. It also explicitly distinguishes planning from executing by saying 'returns the plan for you to run yourself.' This is clear and differentiates from the sibling tools around capabilities and grades.

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 provides clear context: use this when you have a goal and budget and need an ordered plan of paid endpoints. It also implicitly excludes execution by stating 'Moves no money and buys nothing: it returns the plan for you to run yourself.' However, it does not explicitly name alternatives or state when not to use it versus siblings.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.2/5.0
Disambiguation4/5

Each tool has a clear primary role: searching, retrieving details, grading endpoints, and route planning. check_grade and get_capability both surface verification data, but the former targets arbitrary endpoint URLs while the latter is for known catalog capabilities, so they are distinguishable.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern: check_grade, get_capability, plan_route, search_capabilities. The naming is predictable and clearly signals what each tool does.

Tool Count5/5

Four tools is a focused, well-scoped set for the server's purpose of discovering, evaluating, and planning paid endpoints. Each tool covers a distinct part of the workflow without unnecessary duplication.

Completeness5/5

The tool surface covers the full read-side workflow: search to discover capabilities, get_capability for deep detail, check_grade for endpoint verification, and plan_route for constructing a budgeted path. The explicit no-execution design is consistent with the stated purpose, so there are no obvious dead ends.

Resources