Skip to main content
Glama
mayeu20

buymeacoffee-mcp

summary

Read-onlyIdempotent

Calculates total one-off support and Extras amounts per currency over a recent period, excluding refunds and revoked purchases, and alerts when data is incomplete.

Instructions

Total one-off supports and Extras by currency over a recent window, excluding refunds and revoked purchases. Returns an error if the page cap prevents a complete summary.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
daysNo
max_pagesNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4/5.0
Behavior4/5

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

Annotations already mark this as read-only, idempotent, and non-destructive. The description adds meaningful behavioral context beyond annotations by disclosing that refunds and revoked purchases are excluded and that an error occurs when the page cap prevents a complete summary.

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 tight sentences. The first states the core aggregation, grouping, and exclusions; the second flags the error condition. No filler or redundant restatement of the schema.

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?

For a simple read-only tool with two optional parameters and no output schema, the description provides the essential semantics: what is totaled, how it is grouped, what is excluded, and a failure condition. It could specify the exact return shape more, but 'by currency' gives enough to understand the result.

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 coverage is 0%, so the description carries the burden for parameter meaning. It hints at 'recent window' for days and 'page cap' for max_pages, giving useful context, but it does not explicitly map those concepts to the parameter names or explain their effect on the result.

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 clearly states the tool produces totals of one-off supports and Extras by currency, over a window, and explicitly excludes refunds and revoked purchases. This is specific enough to distinguish it from the sibling list tools, which provide itemized records rather than aggregate summaries.

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

Usage Guidelines3/5

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

The use case is implied: it is the summary/aggregation counterpart to the sibling list tools. However, the description does not explicitly say when to prefer summary over list_supporters, list_extra_purchases, or list_subscriptions, nor does it state exclusions like 'use lists for itemized data'.

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