Skip to main content
Glama

boardsesh_get_sessions

Read-only

Retrieve recent climbing sessions grouped by day, including boards, angles, sends, flashes, and climbs. Compare session performance with newest results first.

Instructions

Return recent climbing sessions (entries grouped by calendar day), newest first.

Use when the user asks how their last session went, what they climbed on a day, or wants to compare sessions. Each session lists the boards and angles used, sends, flashes, total tries, hardest send and every climb logged that day.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
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.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already establish this as read-only and non-destructive. The description adds useful behavioral detail beyond that: newest-first ordering, grouping by calendar day, and the specific data included per session. No annotation contradiction exists.

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?

Three sentences with no filler: purpose and ordering first, usage triggers second, output contents third. Each sentence earns its place and the key action is front-loaded.

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 read-only tool with two optional, fully documented parameters and an output schema, the description covers when to use it and what the result structure contains. It could more explicitly contrast with sibling tools, but nothing critical is missing.

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?

The input schema has 100% description coverage, with clear explanations for board filtering and limit. The description does not add parameter-level semantics beyond that, so the baseline of 3 is appropriate.

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 recent climbing sessions (entries grouped by calendar day), newest first.' It also enumerates the session-level contents (boards, sends, flashes, hardest send, climbs), which separates it from sibling tools like get_summary or get_ascents.

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 'Use when...' clause gives three concrete triggers: asking about a last session, what was climbed on a day, or comparing sessions. It does not name explicit alternatives or state when not to use it, so it stops short of full routing guidance.

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