Skip to main content
Glama
hs737

MCP Server for YNAB

by hs737

Server — Ping

ping
Read-only

Verify server reachability without any YNAB API request or token check, letting rate-limited agents check availability without spending quota or causing unrelated errors.

Instructions

[READ] Is this server up? Answers from the process alone: no YNAB request, no token check, no budget read. This exists for the agent that has been rate limited and scheduled itself to come back — the way to find out whether the server is still reachable must not be a call that spends the quota it is waiting on, or that fails for a second, unrelated reason. Returns the server version, whether write tools are registered, and the request budget.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.4.0

TDQS

A4.6/5.0
Behavior5/5

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

Annotations already declare readOnlyHint/openWorldHint/destructiveHint, but the description adds behavior those annotations cannot convey: zero API calls, no token validation, no budget read, and the deliberate quota-free design intent. It also previews the payload (version, whether write tools are registered, request budget), which is real disclosure beyond structured fields.

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?

Front-loaded with the [READ] tag and the core question, then rationale and return contents. The rate-limit rationale sentence is longer than strictly necessary, but it is the tool's raison d'être and each sentence carries information.

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 zero-parameter ping with an output schema, the definition supplies everything an agent needs: what it does, why it exists, its cost profile, and a preview of the return. Nothing material is missing.

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

Parameters4/5

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

There are zero parameters and 100% schema coverage, so the baseline is 4. The description correctly treats this as a no-argument call and spends no words on non-existent parameters.

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 — a health/ping check on the server — and immediately scopes it ('answers from the process alone'). It is clearly distinguishable from data-reading siblings like overview_request_budget or transactions_list because it explicitly performs no YNAB request, token check, or budget read.

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?

Gives a concrete when-to-use scenario: an agent that has been rate limited and needs a reachability check that does not spend quota or fail for unrelated reasons. It effectively describes when-not-to-use (anything that touches the API/token). It stops short of naming a specific alternative sibling, so it is clear context rather than full routing.

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