Skip to main content
Glama
hs737

MCP Server for YNAB

by hs737

Payee locations — List for payee

payee_locations_list_for_payee
Read-only

Retrieve all geographic locations (latitude and longitude) for a specific YNAB payee by payee ID, useful for mapping where a payee operates.

Instructions

[READ] List all locations for a specific payee (geographic lat/lon data). Low priority: rarely useful for AI budget workflows.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
plan_idNo
payee_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.4.0

TDQS

A3.6/5.0
Behavior3/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 only the '[READ]' tag, the lat/lon nature of the payload, and a priority hint — some value, but no detail on pagination, auth, or result volume.

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?

Two short sentences, front-loaded with the action and scope, with the caveat trailing deliberately. Nothing is redundant or padded.

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 described, and annotations carry the safety profile. The gap is the undocumented plan_id parameter, which an agent cannot resolve from description or schema.

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%, so the description must carry parameter meaning. 'Specific payee' loosely implies payee_id, but plan_id is never mentioned and no format or filtering semantics are given for either parameter.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb and resource ('List all locations') scoped to 'a specific payee', with the parenthetical clarifying the data is geographic lat/lon. The scope phrase implicitly separates it from the sibling payee_locations_list, though that sibling is not named.

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?

Provides an explicit negative-use signal ('Low priority: rarely useful for AI budget workflows'), which is genuine when-not-to-use guidance. It does not, however, route the agent to a better alternative for the task it is discouraging.

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