Skip to main content
Glama
wmmg101

kilter-mcp

kilter_get_grade_pyramid

Read-only

Retrieve your Kilter Board send pyramid: sends per grade, hardest first, with flash rates. Filter by wall angle to analyze grade distribution and consistency.

Instructions

Return the user's send pyramid: sends per grade, hardest first, with flash rates.

Use when the user asks about their grade pyramid, distribution of grades, flash rate per grade, or how solid they are at a level. Optional wall-angle filter.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
angleNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already cover read-only and non-destructive behavior. The description adds useful behavioral details: the pyramid is ordered hardest first and includes flash rates, and the angle parameter filters by wall angle. It does not contradict annotations and provides context beyond them.

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?

Two sentences, no waste. The first sentence states the core function; the second gives usage guidance and the filter. The primary purpose is front-loaded and every clause adds value.

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?

The tool has an output schema, so return format is covered elsewhere. With one optional parameter explained, clear usage guidance, and annotations for safety, nothing an agent needs to call it correctly is missing. Complexity is low, and the description is fully sufficient.

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?

Schema has 0% description coverage for the 'angle' parameter, so the description must explain it. It does: 'Optional wall-angle filter.' This gives the parameter meaning (a filter on wall angle) and clarifies it is optional. Though it lacks units or range, it sufficiently compensates for the schema gap.

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 clearly states the tool returns a send pyramid with sends per grade, hardest first, and flash rates. It uses a specific verb and resource, and the usage triggers ('grade pyramid', 'distribution of grades', 'flash rate per grade') distinguish it from siblings like kilter_get_hardest_sends and kilter_get_progression.

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?

It explicitly lists when to use the tool ('when the user asks about their grade pyramid, distribution of grades, flash rate per grade, or how solid they are at a level') and mentions the optional angle filter. However, it does not explicitly name alternatives or state when not to use it, so it lacks exclusions.

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