Borrowing it
Nothing to install: this file belongs to hs737/mcp-server-for-ynab. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/hs737/mcp-server-for-ynab/master/.agents/skills/live-api-verification/SKILL.mdgit clone --depth 1 https://github.com/hs737/mcp-server-for-ynabWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/hs737/mcp-server-for-ynab/live-api-verification)<a href="https://agentmods.dev/skills/hs737/mcp-server-for-ynab/live-api-verification"><img src="https://agentmods.dev/badge/skills/hs737/mcp-server-for-ynab/live-api-verification.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00024 | $0.01171 |
| Opus 5 | $0.00012 | $0.00585 |
| Sonnet 5 | $0.00005 | $0.00234 |
| Haiku 4.5 | $0.00002 | $0.00117 |
Grade A, and why
live-api-verification scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -s -H "Authorization: Bearer $YNAB_API_KEY" \ How it starts
The opening of the file, as written. The whole thing — 114 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Live API Verification
Use this skill whenever a change touches how a YNAB response is parsed, or how an agent connects to the server. The test suite cannot catch drift between a response model and the real API, because every payload in it was written by hand: the model and the fixture are the same guess.
Use When
- Adding or editing a model under
src/mcp_server_for_ynab/models/ynab/ - Adding a raw tool or a
ynab_clientwrapper for a new route - Upgrading the
mcpSDK, or changing transport/CLI startup - Reviewing a claim that a tool "works" when only unit tests were run
- Investigating a tool that fails in a client but passes in CI
The Failures This Prevents
The money movement models were written by analogy with transactions. They
required date on a movement and name/amount on a group. The real API
sends none of those — it sends month, moved_at, and category endpoints.
All four money movement tools failed at validation on every call, while the
suite passed, because no test used a real payload and no test touched the
family at all.
Two properties made this invisible:
- Hand-written fixtures agree with the model by construction.
- The tool boundary returns failures as a structured error payload with
isError: False, so a caller that only checks the MCP result looks fine.
The write tools failed four more ways, each invisible to the same suite:
category-groupsin the path where the API wantscategory_groups, so YNAB answered "Invalid URI" for create and update alikecategories_createcould not sendcategory_group_id, which the API requires, so no category could ever be created- the bulk update model expected
data.bulk, a shape this route does not return, so the write succeeded and the response failed to parse - the group create and update routes return a group without its
categories, which the response model required
None of these are visible from the request side. Three of the four failed after YNAB had already accepted the write.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 8d ago First seen · 114 lines · 24 tokens per session scan A 7e1f50dd7e5c
live-api-verification is a skill published in the GitHub repository hs737/mcp-server-for-ynab (1 stars, last pushed yesterday), licensed Apache-2.0. It adds 24 tokens to every session and 1,171 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
agent-payments-assurance-challenge
Validate and score a bounded, self-attested offline payment-assurance run record against the unpublished alpha challenge contract. Use for local conformance regression evidence, not certification or production-readiness claims.
ledgr:savings-analysis
Calculate savings rate, identify top discretionary spending, and model what-if scenarios.
ledgr:budget-check
Analyze budget vs actual spending and flag categories at risk of overspending.
ledgr:monthly-review
Review monthly spending patterns and compare to previous months using Ledgr financial data.
ledgr:net-worth-tracking
Analyze net worth trends, break down by asset type, and highlight largest changes.
ledgr:subscription-audit
Audit recurring charges to find subscriptions, estimate total cost, and identify savings opportunities.