Skip to main content
Glama
wmmg101

kilter-mcp

kilter_get_logs

Read-only

Retrieve your Kilter logbook entries with filters for angle, topped status, and date range. Get recent climbs and attempts sorted newest first.

Instructions

Return the user's Kilter logbook entries, newest first.

Use when the user asks about recent Kilter climbs, attempts, what they climbed on a date, or wants raw history. Each entry is one climb at one wall angle on one date with the number of tries in that entry. Filters: limit (default 50, max 500), angle (degrees), topped (true=only sends, false=only unsuccessful attempts), start_date/end_date (YYYY-MM-DD, inclusive).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
angleNo
limitNo
toppedNo
end_dateNo
start_dateNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.6/5.0
Behavior4/5

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

Annotations already establish that this is a safe read-only operation, and the description adds useful behavioral context beyond that: entries are returned newest first, each entry represents a climb/angle/date/tries combination, and filter semantics are explicitly defined. It does not cover every possible edge case, but it meaningfully supplements the annotation baseline.

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 and use cases immediately after. The filter list is dense but scannable, with defaults, units, and format specified in every relevant case. No sentence is redundant.

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?

All five optional parameters are semantically covered, the return ordering is specified, and the output schema exists, so return-value details do not need to be in the description. The description gives an agent everything needed to invoke the tool correctly and interpret its basic behavior.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description carries full responsibility for explaining parameters. It clearly documents all five filters: limit with default and max, angle in degrees, topped as sends vs unsuccessful attempts, and start/end date format with inclusivity. This fully compensates for the schema's lack of descriptions.

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 opens with a specific verb and resource: 'Return the user's Kilter logbook entries, newest first.' It further clarifies the unit of data ('one climb at one wall angle on one date'), which distinguishes it from sibling tools like kilter_get_sends or kilter_get_sessions. This makes the tool's scope immediately identifiable.

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 explicit use cases: 'when the user asks about recent Kilter climbs, attempts, what they climbed on a date, or wants raw history.' It does not explicitly name sibling tools or state when not to use this tool, but the when-to-use guidance is clear and actionable enough for an agent to route to it correctly.

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