Skip to main content
Glama

ai-budget-planner

get_budget

Get current utilisation, spend breakdown by provider, and alert status for a budget

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
api_keyNoAPI key for the request
budget_idYesBudget ID from create_budget (format: bgt_xxx)

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Added

TDQS

B3.4/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It implies a read-only operation via 'Get,' but provides no context about error behavior, permissions, or rate limits. It does disclose the core information returned (utilisation, spend breakdown, alert status), which is adequate for a simple getter, but lacks deeper behavioral detail.

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, well-structured sentence that concisely lists the three key data points returned. It is appropriately sized and front-loaded with the verb 'Get,' making it easy to parse.

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?

Without an output schema, the description does a good job of explaining the return content (utilisation, spend breakdown, alert status). It is not overly verbose and covers the essential information for a budget getter. However, it lacks a note about what the tool does NOT do (e.g., historical reports), which would enhance completeness given the sibling tools.

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% with clear descriptions for both parameters (api_key and budget_id). The description adds no additional parameter semantics beyond what the schema already provides, so it meets the baseline for high 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 clearly states the tool's function: 'Get current utilisation, spend breakdown by provider, and alert status for a budget.' It names the resource (budget) and the specific data returned. However, it does not explicitly distinguish itself from sibling tools like get_budget_alerts or department_report, so it lacks the sibling differentiation required for 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?

There is no guidance on when to use this tool versus alternatives. The description only states what it does, without prerequisites, exclusions, or mention of when get_budget_alerts would be more appropriate. This qualifies as 'no guidance.'

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.8/5.0
Disambiguation5/5

Each tool targets a distinct resource and action: budgets, departments, alerts, providers, and reports. No overlapping purposes.

Naming Consistency5/5

All tool names follow consistent snake_case verb_noun pattern: create_budget, department_report, get_budget, etc.

Tool Count5/5

Six tools cover the core functionality of budget planning without being too many or too few.

Completeness4/5

Covers creation, retrieval, alerts, providers, and reports. Missing update/delete for budgets, but core workflows are supported.