Skip to main content
Glama

boardsesh_get_projects

Read-only

Retrieve unfinished climbing projects for any board, showing climbs attempted but not sent so you can decide what to try again. Sorted by recency and tries.

Instructions

Return the user's projects: climbs attempted but never sent at that angle.

Use when the user asks what they are working on, unfinished climbs, or what to try again. A project is per (board, climb, angle), so sending a climb at another angle does not remove it. Sorted by most recently tried, then most tries.

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.3/5.0
Behavior4/5

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

Annotations already indicate a safe read-only operation. The description adds meaningful behavioral detail beyond that: the per-(board, climb, angle) project definition and the sort order by most recently tried, then most tries. This gives the agent useful expectations about what the call returns and how it behaves.

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 short sentences, front-loaded with the core definition and use case, followed by a concise sorting and edge-case note. Every sentence earns its place and there is no filler.

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?

For a two-optional-parameter read-only tool with an output schema, the description is complete. It defines the domain concept, gives usage guidance, clarifies a subtle behavioral rule, and states ordering—all an agent needs to select and invoke it correctly.

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 the schema already fully documents the board and limit parameters. The description does not add parameter-level meaning, but it does not need to; the baseline score of 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 description uses a specific verb ('Return'), identifies the resource ('the user's projects'), and defines 'projects' precisely as climbs attempted but never sent at that angle. This definition distinguishes it from sibling tools like boardsesh_get_ascents, so an agent can tell them apart.

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?

Explicitly states when to use the tool: 'when the user asks what they are working on, unfinished climbs, or what to try again.' It provides clear context but does not explicitly name alternatives or give a when-not-to-use directive, which leaves a small gap in routing.

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