Skip to main content
Glama

boardsesh_get_ascents

Read-only

Retrieve climbing logbook entries across boards, newest first, with filters for board, angle, status, and date range to analyze sends, flashes, or attempts.

Instructions

Return the user's logbook entries, newest first, across every board.

Use when the user asks about recent climbs, sends, flashes, attempts, what they did on a date, or wants raw history. Each entry is one climb at one angle on one board at one time with the number of tries. Filters: limit (default 25), board, angle, status ('all', 'sends', 'attempts', 'flashes'), start_date/end_date (YYYY-MM-DD).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
angleNoWall angle in degrees (e.g. 20, 40). Omit for all angles.
boardNoBoard type to filter to: kilter, tension, moonboard, decoy, touchstone, soill, grasshopper, woods or spray. Omit for all boards.
limitNoMaximum number of items to return.
statusNoFilter by outcome. 'sends' includes flashes.all
end_dateNoInclusive end date, YYYY-MM-DD, in the user's timezone.
start_dateNoInclusive start date, YYYY-MM-DD, in the user's timezone.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already mark it read-only, and the description adds behavioral context: entries are returned newest first, across all boards, and each entry represents one climb at one angle with attempt count. This goes beyond the structured annotations and clarifies the tool's output granularity.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is four sentences with a clear structure: purpose, when-to-use, data shape, filters. It is front-loaded and every sentence contributes, though the data-shape sentence could be inferred from 'ascents'; still, it's not bloated.

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?

For a 6-parameter read-only tool with an output schema, this description covers purpose, typical use cases, ordering, scope, and filter list. No critical selection information is missing; the only small gap is explicit sibling differentiation, but use cases already imply it.

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%, and the description's filter list (limit, board, angle, status, start_date/end_date) is purely a summary of the schema, adding no new semantic meaning beyond what the properties already convey. The baseline 3 applies.

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 first sentence states a specific verb ('Return') and resource ('logbook entries') with a clear scope ('across every board') and ordering ('newest first'). This differentiates from sibling tools like boardsesh_get_sessions or boardsesh_get_summary, which operate on different resources.

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 explicitly lists concrete use cases ('recent climbs, sends, flashes, attempts, what they did on a date, or wants raw history') which distinguish from aggregated sibling tools. However, it does not name alternative tools or state when not to use this tool, so it stops short of explicit exclusion.

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