Skip to main content
Glama
drishit96

Budgetsco MCP Server

by drishit96

Get Budget

getBudget
Read-onlyIdempotent

Retrieve budget details for a date range by specifying a start month. Optionally set an end month and break down totals by category to analyze spending.

Instructions

Retrieve budget for a specific period

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
endMonthNoEnd month to filter targets, in YYYY-MM format. Defaults to the next month after startMonth.
startMonthYesStart month to filter targets, in YYYY-MM format
breakDownByCategoryNoWhether to provide a breakdown of the total by category. Defaults to false.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv1.0.8
    • removedInput schema / description
      Removed value: -"Parameters for retrieving budget information"
  2. First observedv1.0.0

TDQS

B3.2/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds the period-scoping behavior (retrieving for a specific period) which is beyond the annotations. However, it doesn't disclose how missing endMonth behaves or what the return structure is, so it adds only modest context.

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?

The description is a single sentence with no filler. It directly states the action and scope. Every word earns its place, and it is appropriately short for a simple read operation.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given there is no output schema, the description should at least hint at what is returned (e.g., budget total, breakdown, etc.) to help the agent set expectations. It only says 'Retrieve budget' without specifying the return shape or any response fields. The parameter breakDownByCategory implies some breakdown capability, but the description does not mention it. This is a meaningful gap for a read-only tool.

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 description coverage is 100%, so all three parameters (startMonth, endMonth, breakDownByCategory) are documented in the schema with formats and defaults. The description adds no additional semantic meaning beyond the generic 'specific period', which does not go beyond what the schema already conveys. Baseline 3 applies given full schema coverage.

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?

The description states a specific verb ('Retrieve') and resource ('budget') with a scope ('for a specific period'). It is clear enough to distinguish from the sibling 'setBudget' (write operation) though it doesn't name it explicitly. Slight lack of detail on what 'budget' means or what the response contains prevents a 5.

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

Usage Guidelines2/5

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

No explicit guidance on when to use this tool versus alternatives like setBudget or getTransactions. The description only states what it does, not when it is appropriate or when to choose a different tool. The sibling setBudget exists but is not referenced, leaving the agent to infer the read/write distinction.

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