Skip to main content
Glama
defevan

mountainproject

by defevan

mp_find_routes

Find climbing routes in an area by applying filters for climbing type, grade, style, and minimum stars to get the matching options from Mountain Project.

Instructions

Find routes in an area using Mountain Project route finder filters.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sortNoSort order (default: popularity desc)
typeNoClimbing type
limitNoMax routes
areaIdYesArea ID to search within
stylesNoRoute styles to include
gradeMaxNoMaximum YDS grade, e.g. 5.11d
gradeMinNoMinimum YDS grade, e.g. 5.10a
minStarsNoMinimum star rating

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.3/5.0
Behavior2/5

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

With no annotations, the description carries full responsibility for behavioral disclosure, but it only states the action. It does not mention pagination, default size/order behavior beyond the sort description, authentication needs, rate limits, or the shape of the returned route data.

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 with no filler. Every word adds meaning, and it is immediately clear what the tool does.

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 description plus a fully documented schema is enough to make a basic call, but without an output schema or annotations, an agent is left guessing about the return format and whether results are paginated or capped. The description could usefully add one sentence about the response.

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?

Schema description coverage is 100%, so each parameter is already documented. The description adds no parameter-specific detail, which is acceptable; the baseline of 3 applies.

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 uses a specific verb ('Find') with a clear resource ('routes in an area') and identifies the mechanism ('route finder filters'). This distinguishes it from sibling tools like mp_get_route (single route) or mp_get_area (area details), though it doesn't explicitly name them.

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

Usage Guidelines3/5

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

The mention of 'in an area' implies this is the filter-based route-listing tool, which gives some context for selection. However, it never states when to prefer mp_find_routes over mp_search or mp_get_route, and no exclusions or alternatives are given.

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