Skip to main content
Glama
hs737

MCP Server for YNAB

by hs737

History — List

history_list
Read-only

List recent writes made by the YNAB MCP server, newest first, to see which changes can be reverted and how before choosing one for rollback.

Instructions

[READ] List writes this server has made, newest first. Each entry says whether it can be reverted and how. Use this before history_revert or history_revert_to to choose an entry. Entries are recorded even when writes are later disabled, so history survives a restart.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
plan_idNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.4.0

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, destructiveHint=false, and openWorldHint=false, so safety is covered. The description adds genuine behavioral context beyond that: each entry reports revertability, and history is persisted across restarts even when writes are disabled. It does not describe volume or pagination behavior.

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 read-only marker and the core behavior, then usage, then a persistence caveat. No sentence is filler.

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?

An output schema exists, so return values need not be explained, and the description covers ordering, revertability, usage routing, and persistence. It stops short of documenting parameter semantics or result volume, which is the only meaningful gap for this tool.

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

Parameters2/5

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

Schema description coverage is 0% and the description never mentions either parameter. The meaning of 'limit' (default 25) and especially 'plan_id' scoping is left entirely to inference, so the description fails to compensate for the coverage 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?

States a specific verb and resource ('List writes this server has made'), plus the ordering ('newest first') and the [READ] tag. An agent can distinguish this from history_show and history_revert siblings without opening any schema.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly says to use this before history_revert or history_revert_to in order to choose an entry, naming the alternatives and the condition that selects this tool. That is a complete when-to-use statement.

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