Actual Budget MCP Server
Server Quality Checklist
Latest release: v2.2.0
- Disambiguation5/5
Every tool targets a distinct concept in the Actual budget domain: accounts, net worth, categories, transactions, spending summaries, budget month, budget averages, schedules, payees, and rules. There is slight conceptual proximity between get_spending_summary and get_budget_averages (both return spending data), and between get_payees and get_account_transfer_payee, but descriptions clearly differentiate their purposes. No tool appears to do the same thing as another.
Naming Consistency5/5All eleven tools follow a consistent 'get_<noun(s)>' verb_noun pattern: get_accounts, get_categories, get_transactions, get_spending_summary, get_budget_month, get_budget_averages, get_schedules, get_payees, get_rules, get_net_worth, get_account_transfer_payee. The naming convention is uniform and predictable throughout.
Tool Count5/5With 11 tools, this is a well-scoped set squarely in the optimal range. Each tool addresses a distinct read-only query a user would reasonably make about their Actual budget, and none feels redundant or trivial. The count is appropriate for the server's apparent purpose of budget querying.
Completeness3/5The server is entirely read-only, covering queries well but offering no write operations (no 'create', 'update', 'delete' tools). Notably, the descriptions reference write tools (set_budget, set_transaction_transfer) that are not present in this set. While the domain is comprehensive on the read side, the absence of any mutation tools leaves the surface partially gap-laden if the intent is full budget management.
Average 3.8/5 across 11 of 11 tools scored. Lowest: 2.9/5.
See the Tool Scores section below for per-tool breakdowns.
- No community issues in the last 6 months
- 143 commits in the last 12 weeks
- Last stable release on
- No critical vulnerability alerts
- No high-severity vulnerability alerts
- No code scanning findings
- CI is passing
This repository is licensed under MIT License.
This repository includes a README.md file.
No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.
Tip: use the "Try in Browser" feature on the server page to seed initial usage.
Add a glama.json file to provide metadata about your server.
If you are the author, simply .
If the server belongs to an organization, first add
glama.jsonto the root of your repository:{ "$schema": "https://glama.ai/mcp/schemas/server.json", "maintainers": [ "your-github-username" ] }Then . Browse examples.
Add related servers to improve discoverability.
How to sync the server with GitHub?
Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.
To manually sync the server, click the "Sync Server" button in the MCP server admin interface.
How is the quality score calculated?
The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).
Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.
Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).
Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.
Tool Scores
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The readOnlyHint annotation already declares this is a read-only operation, so the bar for behavioral disclosure is lower. The description adds that it returns name, next date, and amount fields for recurring schedules, providing useful context about what kind of list is returned. The include_completed parameter implies completed schedules exist, which is a behavioral nuance the description hints at but doesn't elaborate on. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single efficient sentence that front-loads the core purpose. Zero wasted words. The parenthetical enumerating returned fields (name, next date, amount) is value-add and compact. Not quite a 5 because it leaves the parameter semantics unanswered, but structurally clean.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness2/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple list tool with readOnlyHint and one optional parameter, the bar is moderate. The description covers the return content (name, next date, amount) but says nothing about the include_completed parameter, what completed schedules are, ordering, or pagination. With 0% schema coverage and the parameter left fully unexplained, the tool description leaves a real gap in agent understanding.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters2/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the schema provides NO explanation for the include_completed parameter. The description doesn't mention include_completed at all, meaning an agent would have to infer from the name that it controls whether finished schedules appear in results. Since coverage is low and the description fails to compensate, this scores below baseline.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose3/5Does the description clearly state what the tool does and how it differs from similar tools?
The description 'Recurring schedules configured in Actual (name, next date, amount)' states a clear verb-resource pair and gives the resource scope (schedules) plus key fields. However, it doesn't distinguish from siblings beyond being a natural extension of the get_* list family. The parenthetical fields add useful specificity, making the purpose clear, but there's no explicit differentiation from sibling list tools like get_net_worth or get_rules.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines2/5Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool vs alternatives is provided. With 10 sibling get_* tools, an agent gets no indication of when schedules (recurring future transactions) would be preferred over get_transactions or get_rules. There's implied context that this is for recurring schedules, but no explicit when/when-not statements or alternative tool references.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
readOnlyHint=true is provided, so the safety profile is covered by annotations. The description adds useful behavioral context: transfers excluded, spending positive/income negative, sorted descending. However, it doesn't discuss pagination, date range semantics, or what happens with empty results. Given annotations exist, a 3 is reasonable for the added 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/5Is the description appropriately sized, front-loaded, and free of redundancy?
Three short sentences, all information-dense with zero filler. Covers aggregation, exclusions, sign conventions, and sort order in ~20 words. Exceptionally efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness3/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
No output schema exists, so the description should carry more weight for return format. It describes sign conventions and sort order (useful return semantics) but not the response structure, 'others' bucket behavior relation to top_n, or date range interpretation. For a summary tool with no output schema and 5 params at 20% coverage, there are gaps, though the description covers sign and sorting which is meaningful.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters2/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is only 20%, meaning most of the 5 parameters lack schema descriptions (top_n, include_income, group_by enum values may exist in schema but not described in detail). The description explains 'group_by' semantics implicitly (category/payee/month) and mentions income is negative, which relates to include_income. But top_n and include_income behavior aren't explained in the description to compensate for the low schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
Description states it aggregates spending by category, payee, or month. Clearly a read/summary tool. Distinguishes from siblings like get_transactions (list) and get_net_worth (balance) via the aggregation language. Not quite a 5 because it doesn't explicitly name what it contrasts with, but purpose is specific and clear.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description mentions grouping dimensions and the exclusion of transfers, which gives some usage context. However, it doesn't explicitly state when to use this vs get_budget_month, get_transactions, or get_budget_averages. The implied context (aggregate spending summaries) is present but there's no explicit when/when-not guidance with alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, so the safe-read profile is covered by structure. The description adds that category ids are exposed specifically for set_budget consumption, which is useful behavioral context beyond annotations. It doesn't describe response format or pagination, but this is a straightforward report tool with decent annotation coverage, so a 3 is appropriate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, compact and informative. The field enumeration is useful without being bloated. One minor inefficiency is that it could front-load the verb more strongly, but overall it's efficient and each clause earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness3/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a report-style tool with readOnlyHint annotation and only 2 parameters (one fully documented in schema), the description provides adequate coverage of what the tool returns. However, it lacks any mention of return value structure or how the month parameter format works, which would help given no output schema. It's functional but could be more complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 50% — 'month' has a pattern but no semantic description, while 'only_active' has a description in the schema. The description names the fields the tool reports but doesn't explain the parameters beyond the schema. This is borderline; the description adds thematic context (what the report contains) but doesn't compensate for the undocumented 'month' parameter semantics beyond what the pattern implies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states what the tool does: it reports budget status for a month, enumerating specific data points (to-budget, income, totals, per-category budgeted/spent/balance). It distinguishes from siblings like get_budget_averages by being month-specific and including category ids. However, it doesn't explicitly name the alternative tools or clarify scope distinction beyond the mention of set_budget.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage (getting budget status for a month) but provides no explicit when-to-use vs alternatives guidance. The 'Category ids included for set_budget' note implies a downstream use, which is useful context. However, it doesn't clarify when to use this over get_budget_averages or get_spending_summary, or mention that it's read-only.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations include readOnlyHint=true, so the safety profile is covered. The description adds value by explaining the transfer_account_id concept and how payees relate to accounts in transfers, which is behavioral context beyond the annotation. However, it doesn't describe return format, ordering, pagination, or whether it returns all payees by default.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
Two short sentences, no wasted words. The first sentence states the purpose, the second adds clarifying domain context about transfers. Appropriately sized for a simple list tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a read-only listing tool with one optional boolean parameter and full schema coverage, the description is sufficient. It explains the key domain concept (transfer_account_id) that helps the agent understand both the output and the only_transfers parameter. The lack of output schema is acceptable for a simple listing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% including a clear description of only_transfers. The description adds minor value by explaining the underlying concept (transfer_account_id) that relates to the parameter's meaning. With full schema coverage, baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description states the tool lists payees with their IDs via 'Payees with their IDs.' The verb 'List' appears in the title and 'get' in the name. It adds useful context about payees having transfer_account_id, though it doesn't explicitly differentiate from siblings beyond the title 'List payees'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
There is no explicit when-to-use or when-not-to-use guidance. The only parameter, only_transfers, is self-explanatory via schema. The description gives no context about when to use this vs get_account_transfer_payee or other siblings, though the sibling set makes it reasonably clear this is a listing operation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The readOnlyHint annotation already declares this is a safe read operation. The description adds useful context about the default inclusion of off-budget accounts, which is a meaningful behavioral detail beyond what annotations provide. It adds some value but doesn't describe return format or pagination, though for a list-accounts tool this is less critical.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences with zero waste. The first states the core purpose, the second adds a key behavioral detail about defaults. Every word earns its place, and the description is immediately scannable.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple filtered-list tool with 100% schema coverage, read-only annotations, and two parameter descriptions, the description is adequate. The default-behavior clarification about off-budget accounts is genuinely useful. It could mention return format or balance currency, but with no output schema, the agent's needs are reasonably met given the tool's simplicity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so both parameters (include_closed, include_off_budget) are already documented with descriptions in the schema. The tool description itself only reiterates the off-budget default behavior already stated in the schema parameter description. The description adds minimal value over the schema's parameter documentation, so baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool lists accounts with current balances, using a specific verb ('List') plus resource ('accounts'). It distinguishes itself from siblings like get_transactions and get_categories by focusing on account listing with balance info. However, it doesn't explicitly differentiate from get_net_worth, which could also be about balances.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description mentions off-budget accounts are included by default, which gives context on what the default behavior is. However, it doesn't provide explicit when-to-use guidance versus alternatives like get_net_worth, or explain when one might prefer to toggle include_off_budget or include_closed. The usage context is implied rather than explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, so the safety profile is covered. The description adds context beyond annotations by explaining the purpose of the IDs ('required by write tools'), which tells the agent these IDs are valuable for chaining into subsequent write operations. The scope (category groups AND categories) adds clarity about what's returned.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
A single sentence that conveys the resource, the verb, the output content, and a practical usage hint (IDs needed by write tools). Zero waste, every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a straightforward listing tool with readOnlyHint annotation and 100% schema coverage of its 2 optional parameters, the description is largely complete. It conveys the output (categories+groups+IDs) and the practical relevance of the output. No output schema exists, but the description adequately characterizes what's returned. Minor gap: doesn't describe pagination or ordering behavior, but acceptable for a simple listing tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with both parameters (include_notes, include_hidden) fully documented in the schema. The description adds no extra detail about these parameters, but the schema already carries the full burden. Baseline 3 is appropriate since the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description states this lists category groups and categories with their IDs, which is specific about the resource (categories) and the verb (list). It adds the valuable note that IDs are required by write tools. However, it doesn't explicitly distinguish from siblings like get_accounts or get_payees, though the resource name itself provides clear differentiation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies this is a read/reference tool since it notes IDs are required by write tools, suggesting it should be used before write operations. However, there's no explicit when-to-use guidance or exclusion of alternatives, and the sibling tools are clearly distinct resources so no specific alternative is named. The guidance is implied rather than explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnlyHint=true, so the safety profile is already covered. The description adds useful context about what the returned data represents (automation rules with IDs, amounts in currency units) and the conceptual framing that rules classify recurring movements. With annotations handling the read-only safety, this description adds meaningful added value without contradicting anything.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
Three concise sentences, each earning its place: what the tool returns, the broader value of rules, and the currency-unit clarification. No redundancy or filler. Front-loaded with the primary purpose immediately.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter list tool with readOnlyHint annotation and no output schema, the description is largely complete. It communicates the domain, the return data shape (rules with IDs), and a currency detail. It could mention what fields/sections of a rule are returned (e.g., conditions, actions) or pagination, but for a list-returning read tool this is reasonably sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, and schema coverage is effectively 100% (empty schema, nothing undocumented). The baseline for 0-parameter tools is 4, and the description appropriately doesn't waste space on parameter details that don't exist. The note that amounts are in currency units helps the agent interpret returned values, which is a small but useful semantic addition.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool lists Actual's automation rules with their IDs. It also provides meaningful context by explaining what rules do (run on imported transactions, classify recurring movements) — this adds value beyond the bare tool name. It doesn't explicitly contrast with sibling tools, but the domain (automation rules) is distinct from accounts, categories, transactions, etc.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the tool is for viewing automation rules and understanding how recurring movements classify themselves, which gives some usage context. However, it doesn't explicitly state when to use this vs alternatives, nor are there exclusions or alternatives named. Among siblings, get_schedules and get_payees are somewhat adjacent (recurring/schedule-related), so some distinction guidance would help, but the unique domain is reasonably implied.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotation already declares readOnlyHint=true, so the safety profile is covered. The description adds useful context: transfers excluded by default, pagination capped at 200. However, it doesn't disclose the return format, whether results are ordered, or what the total count semantics are for offset/limit. With readOnlyHint present, baseline 3 is fair; it adds some value over annotations but not deep 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/5Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, zero waste. Every clause carries meaning: the filter list, the transfer default, and the pagination cap all add value. Well front-loaded with the core search purpose first.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For an 11-parameter search tool with no output schema and only 36% schema coverage, the description gives a solid high-level frame: filters available, transfer default, pagination cap. It doesn't explain result ordering or the relationship between offset/limit and any total-count concept, which would be helpful given no output schema. Slight gap, but the search semantics are reasonably complete for a list tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is only 36%, so the description partially compensates by listing the filter categories. However, it doesn't add detail beyond the schema for ambiguous params like min_amount ('Units, e.g. -500' in schema) vs max_amount (no description in schema). It confirms search_text matches payee/notes and pagination limit, but doesn't resolve all gaps left by the 36% coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb (Search) with a clear resource (transactions) and lists concrete filters (account, category, text, amount range, uncategorized). It also states two distinguishing traits: transfers excluded by default and pagination limit of 200. This clearly differentiates it from sibling read tools like get_spending_summary or get_net_worth.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly states the search scope (date range with optional filters) and that transfers are excluded by default. It mentions the pagination max of 200. It doesn't explicitly name alternative tools or when-not contexts, but the read-only nature and filter set give a clear usage context. Could name a sibling like get_spending_summary as an alternative for aggregated data.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnlyHint=true, and the description reinforces this by describing it as 'mainly for inspection' and noting set_transaction_transfer resolves independently. The description adds behavioral context (it's a convenience shortcut, not a necessary resolver) beyond what annotations provide. No contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, zero waste. Each sentence earns its place - the first defines the purpose, the second provides usage context and limitations. Exceptionally efficient for the information conveyed.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read-only lookup tool with one well-documented parameter and full annotation coverage, the description is complete. It conveys purpose, usage context, and its relationship to sibling tools. No output schema exists, but for a simple payee-lookup tool the return value is reasonably inferable from the purpose statement.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% - the single parameter account_id is fully documented in the schema with its format, pattern, and description 'Account UUID (from get_accounts)'. The description doesn't add parameter semantics beyond this, but per the rubric the baseline of 3 applies since the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
Clear verb+resource: 'The payee that represents an account in a transfer.' It precisely defines what the tool returns (a payee) and for what context (account in a transfer), distinguishing it from sibling get_payees. Very specific and unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides clear context of use: describes it as a 'shortcut over get_payees for the common case' and notes that set_transaction_transfer resolves it on its own, so it's 'mainly for inspection.' This gives clear when-to-use guidance, though it doesn't explicitly name an alternative to use instead of this tool beyond the sibling get_payees.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, so the safe-read nature is covered. The description adds exclusions ('transfers and income excluded') and clarifies positive spending, which enriches the data semantics. However, no details on return format, sorting, or how monthly incompleteness is handled beyond the schema note.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
Three tight sentences convey purpose, statistical nuance (median rationale), and exclusions. Zero fluff; every clause earns its place. Perfectly front-loaded with the core action first.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-param, read-only analytics tool with no output schema, the description is nearly complete: it names the metrics, the window, and the exclusions. Minor gap is no mention of whether incomplete current partial months are truly excluded on top of the running-month exclusion, but that is largely redundant with the schema description.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% and months_back is well documented (type, default 6, min 1, max 24, 'Complete months to analyze, running month excluded'). The description complements by framing the metric semantics (average/median/max) and adding the exclusion context ('transfers and income excluded'), adding value beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
Clear verb+resource+scope: 'per-category spending average, median and max over last N complete months.' Explicitly positioned as 'input for budget preparation.' Distinguishes from siblings like get_spending_summary by specifying per-category breakdown and multiple metrics.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
States it covers 'last N complete months' with the running month excluded (in schema). Median justification ('resists anomalous months') gives agent reasoning for use. Notes exclusions ('transfers and income excluded'). No explicit when-not or alternative naming, but the context is clear enough for a read-only analytics tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The readOnlyHint=true annotation already declares this as a safe read, so the bar is lower. The description adds meaningful context: it includes both on- and off-budget accounts, provides per-account breakdown, and specifies 'Open accounts only' - implying closed accounts are excluded. This is useful behavioral transparency beyond what annotations provide.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
A single tight sentence, front-loaded with the core purpose ('Full net worth') followed by the composures and constraints. Every word earns its place - no fluff, efficiently crams scope, breakdown granularity, and filtering into one sentence.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
This is a read-only summary tool with no parameters, no output schema required, and good annotations. The description covers scope (both budget types), granularity (per-account breakdown), and a key filtering constraint. It's complete for its complexity level - no obvious missing information an agent would need to invoke it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has 0 parameters and schema description coverage is 100%. With no parameters, there is nothing to document; the description's scope note ('Open accounts only') compensates well. Baseline 4 for 0-param tools is appropriate here.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool reports net worth covering both on-budget and off-budget accounts (pensions, funds, mortgage) with per-account breakdown. It distinguishes itself from sibling tools (get_accounts, get_spending_summary) by specifying composed financial scope. Very specific verb+resource+scope.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clarifies it covers both on- and off-budget categories, which helps distinguish from get_accounts etc. It notes 'Open accounts only,' which is an important filtering constraint. However, it doesn't explicitly name alternative tools or state when NOT to use it, though context makes the choice fairly clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
GitHub Badge
Glama performs regular codebase and documentation scans to:
- Confirm that the MCP server is working as expected.
- Confirm that there are no obvious security issues.
- Evaluate tool definition quality.
Our badge communicates server capabilities, safety, and installation instructions.
Card Badge
Copy to your README.md:
Score Badge
Copy to your README.md:
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/marcoaperez/actual-budget-mcp-es'
If you have feedback or need assistance with the MCP directory API, please join our Discord server