Money Lover MCP Server
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Money Lover MCP Servershow me my spending in the last week"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Money Lover MCP Server
Node.js implementation of a Model Context Protocol (MCP) server that wraps the unofficial Money Lover REST API. The server exposes 27 MCP tools covering authentication, wallets, categories, transactions, events, debts, and static configuration — enabling AI assistants or MCP-compatible clients to query and manage personal finance data.
Features
Auto-authentication via
EMAIL/PASSWORDenvironment variables — no token passing required for most tools.23 read tools covering user info, wallets, categories, transactions, events, debts, icons, providers, and static config.
4 write tools: create, update, and delete transactions, wallets, and categories.
Large responses truncated automatically to keep LLM context manageable (configurable via
limitparameter).Stdio-based server compatible with Claude Code, Claude Desktop, Cursor, and any MCP host.
Token caching per email under
~/.moneylover-mcp/with automatic refresh on auth errors.
Related MCP server: YNAB Assistant
Prerequisites
Node.js 22 or newer.
Money Lover account credentials.
Installation
npm installUsage
Launch the MCP server over stdio:
npm startProject-scoped Configuration (Claude Code)
Add .mcp.json at the project root:
{
"mcpServers": {
"mcp-moneylover": {
"command": "node",
"args": ["/absolute/path/to/moneylover-mcp/src/server.js"],
"env": {
"EMAIL": "your@email.com",
"PASSWORD": "your-password"
}
}
}
}And enable it in .claude/settings.json:
{ "enabledMcpjsonServers": ["mcp-moneylover"] }Global Configuration (Claude Desktop / Cursor)
{
"mcpServers": {
"mcp-moneylover": {
"command": "npx",
"args": ["@ferdhika31/moneylover-mcp@latest"],
"env": {
"EMAIL": "your@email.com",
"PASSWORD": "your-password"
}
}
}
}Available Tools
Auth
Tool | Description | Arguments |
| Retrieve a JWT token. |
|
User
Tool | Description | Arguments |
| Profile associated with the session. | — |
| Devices and active sessions. | — |
| Extended profile data. | — |
Wallets
Tool | Description | Arguments |
| List all wallets. | — |
| Balance summary for a wallet. |
|
| Wallets shared with other users. | — |
| Pending share invitations. | — |
| Create a new wallet. |
|
| Update wallet name, icon, or currency. |
|
| Delete a wallet permanently. |
|
Categories
Tool | Description | Arguments |
| Categories for a specific wallet. |
|
| All categories across every wallet. | optional |
| Create a category in a wallet. |
|
| Rename a category or change its icon. |
|
| Delete a category. |
|
Transactions
Tool | Description | Arguments |
| Transactions in a date range. |
|
| Create a transaction. Category IDs from |
|
| Update a transaction. The API requires the full payload on every edit — fetch the transaction first if you need current values. |
|
| Delete a transaction. |
|
| Free-form search with optional filters. | optional |
| Transactions flagged as debts/loans. | — |
| Related transactions by ID list. |
|
| Related transactions for a category. |
|
| Related transactions for a wallet. |
|
| Available search filter options. | optional |
Static & Config
Tool | Description | Arguments |
| Saving goals/events for a wallet. |
|
| Open debts in a wallet. |
|
| Icon pack metadata. | optional |
| Supported bank providers. | — |
| Currency catalogue. | optional |
| USD-based exchange rate snapshot. | — |
| Miscellaneous runtime configuration. | — |
Tool Usage Examples
Prompt examples, required vs optional fields, gotchas, and common multi-step patterns for every tool: docs/examples.md.
Library Usage
import { MoneyloverClient } from './src/moneyloverClient.js';
const token = await MoneyloverClient.getToken(email, password);
const client = new MoneyloverClient(token);
const wallets = await client.getWallets();
const txns = await client.getTransactions(walletId, '2026-01-01', '2026-04-30');
await client.addTransaction({ walletId, categoryId, amount: '50000', date: '2026-04-18' });
await client.editTransaction('txn-id', { amount: '60000', note: 'updated' });
await client.deleteTransaction('txn-id');Testing
Unit Tests
Mocked unit tests — no live API calls required:
npm testIntegration Tests (mcp-tester)
mcp-tester is a ReAct-agent-based MCP testing framework. It starts the server, drives an LLM to call tools in response to natural-language prompts, and asserts the correct tools were called with correct arguments.
Install
pipx install --index-url https://pypi.artifacts.furycloud.io/simple/ mcp-testerConfigure
tests/mcp-tester/mcps.json — point at the local server with your credentials:
{
"mcp-moneylover": {
"command": "node",
"args": ["/absolute/path/to/src/server.js"],
"transport": "stdio",
"env": {
"EMAIL": "your@email.com",
"PASSWORD": "your-password"
}
}
}Run
mcp-tester run-tests \
--mcps tests/mcp-tester/mcps.json \
--model gpt-4o-mini \
--concurrent-runs 3 \
tests/mcp-tester/read-tools.yamlResults
tests/mcp-tester/read-tools.yaml contains 25 integration tests covering every read tool:
total 25, success 25, failures 0Key decisions that make the tests stable:
No token parameter on read tools — exposing an optional
tokenfield caused LLMs to inject wallet IDs into it. The server authenticates automatically via env vars.Response truncation — several endpoints return hundreds of thousands of records from the shared MoneyLover database. Tools accept a
limitparameter (default: 20–100) to keep LLM context under control.Dict wrapping — all tool responses return a JSON object (never a bare array) so MCP framework validation passes.
Write-Tool Tests (mcp-tester)
Three additional YAML files test the full CRUD lifecycle for wallets, categories, and transactions across three sequential phases. Each phase runs all three resource types concurrently.
File | Phase | Tests |
| Create |
|
| Edit |
|
| Delete |
|
Run phases in order — each depends on the previous:
# Phase 1: Create
mcp-tester run-tests --mcps tests/mcp-tester/mcps.json --model gpt-4o-mini --concurrent-runs 3 tests/mcp-tester/write-create.yaml
# Phase 2: Edit (after Phase 1 passes)
mcp-tester run-tests --mcps tests/mcp-tester/mcps.json --model gpt-4o-mini --concurrent-runs 3 tests/mcp-tester/write-edit.yaml
# Phase 3: Delete (after Phase 2 passes)
mcp-tester run-tests --mcps tests/mcp-tester/mcps.json --model gpt-4o-mini --concurrent-runs 3 tests/mcp-tester/write-delete.yamlResults across all three phases:
Phase 1 (Create): total 3, success 3, failures 0
Phase 2 (Edit): total 3, success 3, failures 0
Phase 3 (Delete): total 3, success 3, failures 0Key design decisions for write-tool tests:
Discovery before mutation — Edit and delete tests instruct the agent to first call a read tool (
get_wallets,get_categories,get_transactions) to locate the target by name, then call the mutation tool. This mirrors real-world agent behaviour where IDs are not known in advance.args: !anyfor write tool assertions — The framework requires exact arg matching. Write tools accept optional fields (icon,with, etc.) that the agent may include at its discretion;!anyverifies the tool was called and succeeded without failing on harmless extras. Read-tool assertions can use exact arg matching because their schemas have no optional fields the LLM would add spontaneously.Predictable identifiers — Test resources use fixed names (
MCP-Test-Wallet,MCP-Test-Category) and a fixed note (MCP test transaction) so the agent can locate them by name during the edit and delete phases without needing to share state between test runs.Full-payload edit assertions —
edit_transactionis a full-replace operation; the test prompt instructs the agent to fetch the existing transaction first (get_transactions) and carry forward all current field values, only changing the note. This validates the multi-step reasoning the tool description requires.
Security Notes
Never commit real credentials or tokens.
Cached tokens live in
~/.moneylover-mcp/restricted to the current user.Delete that directory to revoke all cached sessions.
Available Tools
33 toolsadd_categoryAdd CategoryC
Create a new transaction category in a wallet.
| Name | Required | Description | Default |
|---|---|---|---|
| walletId | Yes | Wallet to create the category in | |
| name | Yes | Category name | |
| icon | Yes | Icon identifier (see get_icons) | |
| type | Yes | 1 = expense, 2 = income |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden but only states it 'creates' without disclosing behavioral traits like permissions needed, whether it's idempotent, error handling, or rate limits. It mentions the resource but lacks details on what happens upon creation (e.g., returns an ID, affects wallet state), making it insufficient for a mutation tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, clear sentence with no wasted words, effectively front-loading the core action and resource. It is appropriately sized for the tool's complexity, making it easy to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a mutation tool with no annotations and no output schema, the description is incomplete. It lacks details on behavioral aspects (e.g., what the tool returns, error conditions) and usage context, which are critical for an agent to invoke it correctly. The schema covers parameters well, but overall guidance is inadequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all parameters (walletId, name, icon, type) with descriptions. The description adds no additional meaning beyond implying creation, which is redundant with the schema. Baseline 3 is appropriate as the schema handles parameter documentation adequately.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Create') and resource ('new transaction category in a wallet'), making the purpose evident. However, it does not explicitly differentiate from siblings like 'edit_category' or 'get_categories', which would require mentioning uniqueness such as 'new' creation versus modification or retrieval.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives like 'edit_category' or 'delete_category'. The description implies usage for creation but lacks context on prerequisites, exclusions, or comparisons to sibling tools, leaving the agent without clear selection criteria.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
add_transactionAdd TransactionC
Create a new transaction in a wallet.
| Name | Required | Description | Default |
|---|---|---|---|
| walletId | Yes | Wallet identifier | |
| categoryId | Yes | Category identifier | |
| amount | Yes | Transaction amount as string | |
| note | No | Optional transaction note | |
| date | Yes | Display date in YYYY-MM-DD format | |
| with | No | Optional array of related parties |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden but only states it 'creates' without disclosing behavioral traits. It doesn't mention permissions needed, whether it's idempotent, error handling, or what happens on success (e.g., returns transaction ID). This leaves significant gaps for a mutation tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence with zero wasted words. It's front-loaded with the core action and resource, making it easy to parse quickly without unnecessary elaboration.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a mutation tool with 6 parameters, no annotations, and no output schema, the description is incomplete. It lacks behavioral context, usage guidance, and details on what the tool returns or how errors are handled, leaving the agent under-informed for proper invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so parameters are documented in the schema. The description adds no additional meaning beyond implying 'transaction' creation, which aligns with the schema but doesn't clarify parameter interactions or business rules (e.g., amount format).
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Create') and resource ('new transaction in a wallet'), making the purpose evident. However, it doesn't differentiate from sibling tools like 'edit_transaction' or specify what constitutes a 'transaction' (e.g., expense, income).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives like 'edit_transaction' or 'delete_transaction'. The description lacks context about prerequisites (e.g., needing an existing wallet/category) or typical use cases, offering minimal usage direction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
add_walletAdd WalletC
Create a new Money Lover wallet.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Wallet display name | |
| currencyId | Yes | Currency identifier (see get_currencies) | |
| icon | No | Icon name (defaults to icon_7) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It mentions creation but doesn't specify whether this requires authentication, what happens on success/failure, if there are rate limits, or how it interacts with existing wallets. This leaves significant gaps for a mutation tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that directly states the tool's purpose without unnecessary words. It's appropriately sized and front-loaded, making it easy to understand at a glance.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a mutation tool with no annotations and no output schema, the description is insufficient. It doesn't explain what the tool returns, error conditions, authentication requirements, or how it fits into the broader wallet management context, leaving the agent with incomplete operational understanding.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema fully documents all parameters. The description adds no additional parameter information beyond what's in the schema, but since the schema is comprehensive, a baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Create') and resource ('Money Lover wallet'), making the purpose immediately understandable. However, it doesn't explicitly differentiate from sibling tools like 'edit_wallet' or 'delete_wallet', which would require mentioning this is for new wallet creation only.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like 'edit_wallet' or 'get_wallets', nor does it mention prerequisites such as authentication or context about wallet management. It simply states what the tool does without usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
delete_categoryDelete CategoryC
Permanently delete a category.
| Name | Required | Description | Default |
|---|---|---|---|
| categoryId | Yes | Category identifier to delete |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. 'Permanently delete' implies a destructive, irreversible operation, which is critical context. However, it lacks details on permissions, side effects (e.g., impact on related transactions), error conditions, or confirmation requirements, which are important for a destructive tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with zero wasted words. It efficiently conveys the core action and permanence, making it easy for an agent to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a destructive tool with no annotations and no output schema, the description is insufficient. It doesn't explain what happens to dependent data (e.g., transactions in that category), return values, error cases, or auth requirements, leaving significant gaps for safe tool invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with the single parameter 'categoryId' well-documented in the schema. The description adds no additional parameter semantics beyond what the schema provides, so it meets the baseline for high schema coverage without compensating value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('permanently delete') and resource ('a category'), making the tool's purpose unambiguous. It doesn't explicitly differentiate from sibling tools like 'delete_transaction' or 'delete_wallet', but the resource specificity is inherent in the tool name.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives. The description doesn't mention prerequisites, consequences, or relationships with sibling tools like 'edit_category' or 'get_categories', leaving the agent to infer usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
delete_transactionDelete TransactionC
Permanently delete a transaction by its identifier.
| Name | Required | Description | Default |
|---|---|---|---|
| transactionId | Yes | Transaction identifier to delete |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden of behavioral disclosure. It states the action is 'permanently delete' which conveys destructiveness, but doesn't address important behavioral aspects like: what happens to related data, whether deletion can be undone, permission requirements, error conditions, or what the response looks like (confirmation vs. void).
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence with zero waste. It's front-loaded with the core action and resource, making it immediately understandable. Every word earns its place in conveying the essential information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a destructive operation with no annotations and no output schema, the description is inadequate. It doesn't explain what 'permanently' entails in practice, what confirmation or response to expect, error scenarios, or system implications. The combination of destructive nature and lack of structured metadata requires more comprehensive description.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already fully documents the single parameter. The description adds minimal value beyond the schema by mentioning 'by its identifier' which echoes the schema's 'Transaction identifier to delete'. Baseline 3 is appropriate when schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('permanently delete') and target resource ('a transaction by its identifier'), providing specific verb+resource combination. However, it doesn't explicitly differentiate from sibling delete tools like delete_category or delete_wallet, which follow similar patterns.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. There's no mention of prerequisites (e.g., transaction must exist), when-not-to-use scenarios, or comparison with similar tools like edit_transaction for modifying instead of deleting.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
delete_walletDelete WalletC
Permanently delete a wallet and all its data.
| Name | Required | Description | Default |
|---|---|---|---|
| walletId | Yes | Wallet identifier to delete |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions 'permanently delete,' which implies a destructive, irreversible action, but fails to detail consequences like data loss, authorization requirements, or error handling. This is insufficient for a mutation tool with zero annotation coverage.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that directly states the tool's action and scope without unnecessary words. It is front-loaded with the core purpose, making it easy to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a destructive tool with no annotations and no output schema, the description is inadequate. It doesn't explain what 'all its data' entails, whether deletion affects related entities (e.g., transactions), or what the response looks like. This leaves significant gaps in understanding the tool's full impact.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, with 'walletId' documented as 'Wallet identifier to delete.' The description adds no additional parameter details beyond this, such as format examples or constraints. This meets the baseline for high schema coverage but doesn't enhance understanding.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('permanently delete') and the resource ('a wallet and all its data'), making the purpose unambiguous. However, it doesn't explicitly differentiate from sibling tools like 'delete_category' or 'delete_transaction' beyond the resource type, which prevents a perfect score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives, such as 'edit_wallet' for modifications or 'get_wallets' for viewing. It also lacks prerequisites, warnings about irreversible effects, or context about related operations, leaving usage decisions unclear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
edit_categoryEdit CategoryC
Rename a category or update its icon.
| Name | Required | Description | Default |
|---|---|---|---|
| categoryId | Yes | Category identifier | |
| icon | Yes | Icon identifier (required by API even when only renaming — use get_icons for valid names, e.g. icon_3) | |
| name | No | New category name |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It implies a mutation operation ('rename' and 'update') but lacks details on permissions, side effects (e.g., whether changes affect related transactions), or error handling. This is insufficient for a mutation tool with zero annotation coverage.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the core functionality without any wasted words. It directly states what the tool does, making it easy to parse and understand quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's mutation nature, lack of annotations, and no output schema, the description is incomplete. It doesn't cover behavioral aspects like what happens on success/failure or how it interacts with siblings, leaving significant gaps for an agent to operate effectively.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all three parameters. The description adds no additional meaning beyond what's in the schema, such as explaining parameter interactions or constraints. This meets the baseline for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with specific verbs ('rename' and 'update') and resource ('category'), making it immediately understandable. However, it doesn't explicitly differentiate from sibling tools like 'edit_transaction' or 'edit_wallet' beyond the resource name, which is why it doesn't reach a perfect score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., needing an existing category), exclusions (e.g., what can't be edited), or comparisons to siblings like 'delete_category' or 'get_categories', leaving the agent without contextual usage cues.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
edit_transactionEdit TransactionA
Update an existing transaction. The API requires the full transaction payload on every edit, so you must supply walletId, categoryId, amount, and date (fetch the transaction with get_transactions first if you need the current values). categoryId should be the global category ID from get_all_categories or from an existing transaction response.
| Name | Required | Description | Default |
|---|---|---|---|
| transactionId | Yes | Transaction identifier | |
| walletId | Yes | Wallet identifier (required by API) | |
| categoryId | Yes | Category identifier — use global ID from get_all_categories or an existing transaction | |
| amount | Yes | Transaction amount as string | |
| date | Yes | Date in YYYY-MM-DD format | |
| note | No | Transaction note | |
| with | No | Related parties |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses key behavioral traits: the API requires 'full transaction payload on every edit' (important constraint), mentions fetching current values first (workflow guidance), and specifies ID sources. However, it doesn't cover permission requirements, error conditions, or what happens to omitted optional fields like 'note' or 'with' during updates.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately sized (two sentences) and front-loaded with the core purpose. Every sentence adds value: the first states the action and key requirement, the second provides important implementation guidance. No wasted words, though it could be slightly more structured with bullet points for the requirements.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a mutation tool with 7 parameters (5 required), no annotations, and no output schema, the description is adequate but has gaps. It covers the core update operation and critical API constraints, but doesn't explain return values, error handling, or what constitutes a successful edit. Given the complexity and lack of structured metadata, it should provide more complete behavioral context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, providing a solid baseline. The description adds some semantic context beyond the schema: it explains why walletId, categoryId, amount, and date are required ('API requires the full transaction payload'), clarifies categoryId should be 'global category ID from get_all_categories or from an existing transaction response', and mentions fetching current values first. However, it doesn't explain parameter interactions or provide examples.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Update an existing transaction' with specific mention of required fields (walletId, categoryId, amount, date). It distinguishes from siblings like 'add_transaction' by focusing on editing existing records, though it doesn't explicitly contrast with 'edit_category' or 'edit_wallet' beyond the resource type.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear usage guidance: 'fetch the transaction with get_transactions first if you need the current values' and mentions using 'get_all_categories' for category IDs. It implicitly suggests when to use this tool (for updates) versus 'add_transaction' (for creation), but doesn't explicitly state when NOT to use it or compare with all alternatives like 'delete_transaction'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
edit_walletEdit WalletC
Update a wallet name, icon, or currency.
| Name | Required | Description | Default |
|---|---|---|---|
| walletId | Yes | Wallet identifier | |
| currencyId | Yes | Currency identifier (required by API — use get_currencies for valid IDs, e.g. 30 for COP) | |
| name | No | New display name | |
| icon | No | New icon name |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. 'Update' implies a mutation operation, but the description doesn't specify permissions required, whether changes are reversible, error handling (e.g., invalid IDs), or response format. It mentions currencyId requires valid IDs from 'get_currencies', but this is in the schema, not the description. For a mutation tool with zero annotation coverage, this leaves significant gaps in understanding behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the core action and attributes. There is no wasted wording, and it directly communicates the tool's purpose without unnecessary elaboration. It earns its place by being clear and to the point.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a mutation tool with no annotations and no output schema, the description is incomplete. It doesn't address behavioral aspects like permissions, side effects, or response format, which are critical for safe usage. The schema covers parameters well, but overall context for an update operation is lacking, making it inadequate for informed tool selection.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all parameters (walletId, currencyId, name, icon) with descriptions. The description adds minimal value by listing the updatable fields (name, icon, currency), but doesn't provide additional semantics beyond what's in the schema. Baseline 3 is appropriate when the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Update') and the resource ('a wallet'), specifying the editable attributes (name, icon, currency). It distinguishes from siblings like 'add_wallet' or 'delete_wallet' by focusing on modification rather than creation or removal. However, it doesn't explicitly differentiate from 'edit_transaction' or 'edit_category' beyond the resource type.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., needing a valid walletId), when not to use it (e.g., for creating or deleting wallets), or refer to sibling tools like 'get_wallets' for obtaining wallet IDs. Usage is implied by the action but lacks explicit context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_all_categoriesGet All CategoriesA
List ALL categories across ALL wallets with no wallet filter. Use this instead of get_categories when no specific wallet is provided.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum categories to return (default 50) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It mentions the scope ('across ALL wallets') and filtering behavior ('no wallet filter'), which adds useful context. However, it lacks details on permissions, rate limits, or response format, leaving gaps for a tool with no annotation coverage.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with zero waste, front-loaded with the core purpose and followed by usage guidance. Every word contributes to clarity and decision-making, making it efficiently structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (1 optional parameter, no output schema, no annotations), the description covers purpose and usage well. It lacks output details, but for a simple list tool, this is a minor gap, making it nearly complete for the context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema fully documents the 'limit' parameter. The description adds no parameter-specific information beyond what the schema provides, meeting the baseline for high schema coverage without compensating with extra details.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('List') and resource ('ALL categories across ALL wallets'), specifying scope ('with no wallet filter'). It explicitly distinguishes from sibling 'get_categories' by indicating when to use this tool instead, making the purpose specific and differentiated.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit guidance on when to use this tool ('when no specific wallet is provided') and names the alternative ('get_categories'), clearly defining the context and exclusion criteria for usage versus siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_categoriesGet CategoriesB
Retrieve categories for a specific wallet.
| Name | Required | Description | Default |
|---|---|---|---|
| walletId | Yes | Wallet identifier |
Output Schema
| Name | Required | Description |
|---|---|---|
| categories | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden but only states it 'retrieves' categories. It lacks behavioral details like whether this is a read-only operation, if it requires authentication, rate limits, error conditions, or what happens if the wallet doesn't exist. For a tool with no annotations, this is insufficient disclosure.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence with zero waste. It's front-loaded with the core action and resource, making it easy to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has an output schema (which handles return values), 100% schema coverage for the single parameter, and no annotations, the description is minimally adequate. However, for a retrieval tool in a context with many siblings, it should better differentiate usage and provide more behavioral context to be fully complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents the 'walletId' parameter. The description adds no additional parameter semantics beyond implying it's for a specific wallet, which the schema's description ('Wallet identifier') already covers. Baseline 3 is appropriate when schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('Retrieve') and resource ('categories'), specifying it's for a specific wallet. However, it doesn't distinguish from sibling 'get_all_categories', which likely retrieves categories without wallet filtering, leaving some ambiguity about when to use each.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like 'get_all_categories' or other category-related tools. It mentions 'for a specific wallet' but doesn't clarify prerequisites, exclusions, or comparative contexts with siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_currenciesGet CurrenciesA
List all currencies supported by Money Lover (names, symbols, codes). Use this for currency metadata, not exchange rates.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max currencies to return (default 100) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden. It implies a read-only operation ('List') but doesn't explicitly state safety, permissions, or response format. It mentions the data structure (names, symbols, codes) which helps, but lacks details on pagination, rate limits, or authentication requirements.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with zero waste - the first states purpose and scope, the second provides crucial usage guidance. Every word earns its place, and the most important information (what it does) comes first.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read operation with 1 parameter and no output schema, the description provides good context about what data is returned and when to use it. However, without annotations or output schema, it could benefit from more detail about response format or any constraints.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% with a single 'limit' parameter fully documented in the schema. The description doesn't add any parameter-specific information beyond what the schema provides, so it meets the baseline for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'List' and resource 'currencies supported by Money Lover', specifying the exact data returned (names, symbols, codes). It distinguishes from sibling 'get_exchange_rates' by explicitly stating this is for 'currency metadata, not exchange rates'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit guidance on when to use this tool ('for currency metadata') and when not to use it ('not exchange rates'), with a clear alternative named in the sibling list (get_exchange_rates). This gives perfect context for tool selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_debtsGet DebtsB
List open debts or loans tracked in a specific wallet.
| Name | Required | Description | Default |
|---|---|---|---|
| walletId | Yes | Wallet identifier |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It implies a read-only operation ('List'), but doesn't specify permissions, rate limits, pagination, or what 'open debts or loans' entails (e.g., status filters, date ranges). For a tool with zero annotation coverage, this leaves significant gaps in understanding its behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the core purpose ('List open debts or loans') and adds necessary scope ('tracked in a specific wallet'). There is no wasted verbiage, making it highly concise and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (1 parameter, 100% schema coverage, no output schema), the description is adequate but incomplete. It lacks behavioral details (e.g., response format, error handling) and usage guidelines compared to siblings, which are needed for full contextual understanding despite the simple schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100%, with the single parameter 'walletId' documented as 'Wallet identifier'. The description adds no additional meaning beyond this, such as format examples or constraints. Since the schema does the heavy lifting, the baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('List') and resource ('open debts or loans'), and specifies scope ('tracked in a specific wallet'), making the purpose understandable. However, it doesn't explicitly differentiate from sibling tools like 'get_debt_transactions' or 'get_transactions', which might also retrieve debt-related data, so it doesn't reach the highest score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides minimal context by mentioning 'in a specific wallet', but offers no explicit guidance on when to use this tool versus alternatives like 'get_debt_transactions' or 'get_transactions'. There are no usage exclusions, prerequisites, or comparisons to sibling tools, leaving the agent with little direction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_debt_transactionsGet Debt TransactionsB
List transactions flagged as debts or loans across the account.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It mentions 'List transactions flagged as debts or loans', which implies a read-only operation, but doesn't disclose behavioral traits such as authentication needs, rate limits, or what 'flagged' entails (e.g., criteria or source). This leaves gaps for an AI agent to understand how it behaves beyond the basic action.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that directly states the tool's purpose without any wasted words. It is front-loaded and appropriately sized for a simple tool, earning full marks for conciseness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (0 parameters, no output schema, no annotations), the description is minimally adequate. It explains what the tool does but lacks details on return values (since no output schema), behavioral context, or usage guidelines. For a read operation with no parameters, it meets the basic requirement but could be more complete by addressing sibling differentiation or output expectations.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has 0 parameters, and the schema description coverage is 100% (though empty). The description adds no parameter information, which is acceptable since there are no parameters to document. A baseline of 4 is appropriate as it doesn't need to compensate for any missing schema details.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('List') and resource ('transactions flagged as debts or loans'), making the purpose specific and understandable. However, it doesn't explicitly differentiate from sibling tools like 'get_debts' or 'get_transactions', which might have overlapping functionality, so it doesn't reach the highest score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like 'get_debts' or 'get_transactions', nor does it mention any prerequisites or exclusions. It only states what it does, without context for selection among siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_eventsGet EventsC
List Money Lover events (savings goals, campaigns) associated with a wallet.
| Name | Required | Description | Default |
|---|---|---|---|
| walletId | Yes | Wallet identifier | |
| limit | No | Maximum number of events to return (default 50) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It mentions listing events but lacks details on permissions, rate limits, pagination, or return format. For a read operation with no annotations, this leaves significant behavioral gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads key information (list events) with clarifying examples. Every word earns its place, with no redundancy or unnecessary elaboration.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no annotations and no output schema, the description is incomplete. It doesn't explain what 'events' entail, their structure, or handling of limits, which is inadequate for a tool with two parameters and behavioral uncertainty.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema fully documents parameters. The description adds no additional meaning beyond implying walletId filters events, which is already clear from the schema. Baseline 3 is appropriate as the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('List') and resource ('Money Lover events') with specific examples ('savings goals, campaigns') and scope ('associated with a wallet'). It distinguishes from siblings like get_transactions or get_wallets by focusing on events, though it doesn't explicitly contrast with them.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives. While it implies usage for wallet-related events, it doesn't specify prerequisites, exclusions, or compare with similar tools like get_related_transactions_by_wallet, leaving the agent to infer context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_exchange_ratesGet Exchange RatesB
Fetch the USD-based exchange rate snapshot used by Money Lover.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions 'snapshot,' implying a read-only operation, but does not specify if it requires authentication, has rate limits, or details the return format. For a tool with zero annotation coverage, this is insufficient to inform the agent adequately.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that directly states the tool's purpose without unnecessary words. It is front-loaded and wastes no space, making it easy for an agent to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has no parameters, no annotations, and no output schema, the description is minimally adequate by stating what it does. However, it lacks details on behavioral traits like authentication needs or return format, which are important for a read operation in a financial context. It meets the basic requirement but leaves gaps in completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 0 parameters with 100% coverage, so no parameter documentation is needed. The description does not add parameter details, which is appropriate, but it could have mentioned any implicit assumptions (e.g., no inputs required). Baseline is 4 for zero parameters, as the schema fully covers the lack of inputs.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Fetch') and the resource ('USD-based exchange rate snapshot used by Money Lover'), which is specific and unambiguous. However, it does not explicitly differentiate from sibling tools like 'get_currencies' or 'get_user_account', which could provide related financial data, so it misses the top score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. With sibling tools like 'get_currencies' that might offer currency-related data, there is no indication of context, prerequisites, or exclusions, leaving the agent to infer usage based on the tool name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_iconsGet IconsC
Fetch the icon pack used by Money Lover categories, wallets, and events.
| Name | Required | Description | Default |
|---|---|---|---|
| pack | No | Icon pack identifier (defaults to "default") |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool fetches an icon pack but doesn't describe the return format (e.g., list of icons, metadata), potential side effects, authentication requirements, or error handling. For a read operation with zero annotation coverage, this leaves significant gaps in understanding how the tool behaves.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the core purpose ('Fetch the icon pack') and specifies the context ('used by Money Lover categories, wallets, and events'). There is no wasted verbiage, and every word contributes to understanding the tool's scope.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the lack of annotations and output schema, the description is incomplete for a tool that fetches data. It doesn't explain what the output contains (e.g., icon URLs, names, categories), how results are structured, or any limitations (e.g., pagination). For a read operation with no structured output documentation, the description should provide more context about the return value.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, with the single parameter 'pack' documented as 'Icon pack identifier (defaults to "default")'. The description adds no additional parameter semantics beyond this, as it doesn't explain what icon packs are available or how they relate to categories/wallets/events. Given the high schema coverage, a baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Fetch') and the resource ('icon pack used by Money Lover categories, wallets, and events'), making the purpose immediately understandable. It doesn't explicitly differentiate from sibling tools, but since no other tools mention icons, this is sufficiently clear. The description avoids tautology by specifying what is fetched rather than just restating the name.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., authentication), context for fetching icons, or relationships to other tools like get_categories or get_wallets that might use these icons. Without such guidance, an agent must infer usage from the tool name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_linked_providersGet Linked ProvidersA
List financial institution providers supported for linked accounts.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It states it's a list operation, implying read-only behavior, but doesn't disclose any behavioral traits like rate limits, authentication needs, or response format. For a tool with zero annotation coverage, this is a significant gap in transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the key information ('List financial institution providers') without any wasted words. It's appropriately sized for a simple list tool with no parameters.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (0 parameters, no output schema), the description is adequate but incomplete. It lacks behavioral context (e.g., what the output looks like, any limitations) and usage guidelines, which are needed for a tool with no annotations to be fully helpful to an AI agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has 0 parameters with 100% schema description coverage, so no parameter information is needed. The description doesn't add param details beyond the schema, but since there are no parameters, a baseline of 4 is appropriate as it doesn't need to compensate for any gaps.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('List') and resource ('financial institution providers supported for linked accounts'), distinguishing it from siblings like get_wallets or get_categories. It precisely communicates what the tool does without being vague or tautological.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives. While the description implies it's for listing providers for linked accounts, it doesn't specify prerequisites, timing, or how it differs from other get_* tools in the sibling list, leaving usage context unclear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_other_configGet Other ConfigB
Retrieve the small static configuration blob served under /other/config.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It mentions 'retrieve' implying a read operation, but doesn't disclose behavioral traits such as authentication needs, rate limits, error conditions, or what the 'small static configuration blob' contains. This is inadequate for a tool with zero annotation coverage.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the key action ('retrieve') and resource. It wastes no words and is appropriately sized for a simple tool, making it easy for an agent to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the lack of annotations and output schema, the description is incomplete. It doesn't explain what the configuration blob contains, its format, or potential errors, which are critical for an agent to use the tool effectively. This is a significant gap for a retrieval tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does 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%, so no parameter information is needed. The description appropriately doesn't discuss parameters, earning a high baseline score for not adding unnecessary details.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'retrieve' and the resource 'small static configuration blob served under /other/config', making the purpose specific and understandable. However, it doesn't explicitly differentiate from sibling tools like get_transaction_search_config or get_user_profile that also retrieve configuration data, keeping it from a perfect score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives. With siblings like get_transaction_search_config and get_user_profile that might retrieve other configs, the description lacks context on use cases, prerequisites, or exclusions, leaving the agent without direction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_transactionsGet TransactionsC
Fetch transactions for a wallet between two dates.
| Name | Required | Description | Default |
|---|---|---|---|
| walletId | Yes | Wallet identifier | |
| startDate | Yes | Start date in YYYY-MM-DD format | |
| endDate | Yes | End date in YYYY-MM-DD format |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It states the tool fetches transactions but doesn't mention whether this is a read-only operation, what permissions are required, how results are returned (e.g., pagination, format), or any rate limits. This is inadequate for a tool that likely accesses sensitive financial data.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that states the core functionality without unnecessary words. It's front-loaded with the essential information, making it easy for an agent to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with no annotations and no output schema, the description is insufficient. It doesn't explain what the tool returns (e.g., transaction list format, error handling) or behavioral aspects like authentication needs. Given the complexity of financial data and lack of structured fields, more context is needed for effective use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with clear documentation of all three parameters (walletId, startDate, endDate). The description adds no additional parameter semantics beyond what's in the schema, so it meets the baseline score of 3 for adequate coverage without adding value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('fetch') and resource ('transactions for a wallet between two dates'), making the purpose immediately understandable. However, it doesn't differentiate this tool from sibling tools like 'search_transactions' or 'get_related_transactions_by_wallet', which appear to serve similar functions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like 'search_transactions' or 'get_related_transactions_by_wallet'. It also doesn't mention prerequisites, such as whether the wallet must exist or be accessible, leaving the agent with no contextual usage information.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_transaction_search_configGet Transaction Search ConfigA
Return the saved configuration options (labels, with-parties, saved filters) available for use with the search_transactions tool.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum config entries to return (default 20) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It describes the tool as a read operation ('Return'), which implies it is non-destructive and likely safe, but it does not disclose behavioral traits like authentication requirements, rate limits, error handling, or the format of the returned data. The description adds value by specifying the purpose but lacks detailed behavioral context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-structured sentence that efficiently conveys the tool's purpose and relationship to another tool. It is front-loaded with the core action and resource, with no unnecessary words or redundancy, making it highly concise and effective.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (one optional parameter, no output schema, no annotations), the description is adequate but minimal. It explains what the tool does and its context with 'search_transactions', but it lacks details on output format, error cases, or prerequisites. For a simple read tool, this is acceptable but leaves some gaps, aligning with a score of 3.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with the single parameter 'limit' fully documented in the schema. The description does not add any meaning beyond the schema, as it mentions no parameters. According to the rules, with high schema coverage (>80%), the baseline score is 3, which is appropriate here since the description does not compensate but also does not detract.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('Return') and the specific resource ('saved configuration options') with explicit details about what those options include ('labels, with-parties, saved filters'). It also distinguishes this tool from its sibling 'search_transactions' by specifying that these configurations are 'available for use with' that tool, making the relationship and differentiation clear.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context by linking this tool to 'search_transactions', implying it should be used to retrieve configurations before or in conjunction with that sibling tool. However, it does not explicitly state when not to use it or mention alternatives, such as whether other tools might provide similar configuration data, which prevents a perfect score.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_user_accountGet User AccountB
List devices and sessions tied to the Money Lover account.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states 'List devices and sessions', implying a read-only operation, but does not specify permissions required, rate limits, or what the output format looks like. This leaves significant gaps in understanding the tool's behavior and constraints.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that directly states the tool's purpose without unnecessary words. It is front-loaded and wastes no space, making it highly concise and well-structured for quick understanding.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of retrieving user account data, the description is incomplete. With no annotations, no output schema, and no guidance on usage or behavioral traits, it fails to provide enough context for an AI agent to use the tool effectively. It should explain output format, permissions, or limitations to compensate for the lack of structured data.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 0 parameters with 100% coverage, so no parameter documentation is needed. The description does not add parameter details, which is appropriate, but it could have clarified the scope (e.g., all devices/sessions or filtered). Given the baseline for 0 parameters is 4, this meets expectations without redundancy.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('List') and the resource ('devices and sessions tied to the Money Lover account'), making the purpose specific and understandable. However, it does not explicitly differentiate from sibling tools like 'get_user_info' or 'get_user_profile', which might also retrieve user-related data, leaving some ambiguity in sibling context.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives, such as 'get_user_info' or 'get_user_profile', nor does it mention any prerequisites or exclusions. It lacks context for distinguishing it from other user-related tools in the sibling list.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_user_infoGet User InfoB
Retrieve the Money Lover user profile associated with the provided token.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions authentication via 'token', which is useful, but lacks details on rate limits, error handling, response format, or whether this is a read-only operation. For a tool with zero annotation coverage, this leaves significant behavioral gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that directly states the tool's purpose without any fluff or redundancy. It is appropriately sized and front-loaded, making it easy to understand at a glance.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (0 parameters, no output schema, no annotations), the description is adequate as a basic overview. However, it lacks details on the response structure or potential errors, which could be helpful for an agent. It meets minimum viability but has clear gaps in completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does 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%, so no parameter documentation is needed. The description appropriately does not discuss parameters, earning a baseline high score for not adding unnecessary information.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Retrieve' and the resource 'Money Lover user profile', making the purpose specific and understandable. However, it does not explicitly differentiate this tool from sibling tools like 'get_user_account' or 'get_user_profile', which appear to serve similar user-related functions, preventing a perfect score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides minimal guidance by mentioning 'the provided token', implying authentication is needed, but it does not specify when to use this tool versus alternatives like 'get_user_account' or 'get_user_profile'. No explicit when-not-to-use or prerequisite information is given, leaving usage context vague.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_user_profileGet User ProfileB
Retrieve extended profile information for the current user.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It states this is a retrieval operation but doesn't mention authentication requirements, rate limits, error conditions, or what 'extended profile information' includes. For a user data tool with zero annotation coverage, this leaves significant gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that gets straight to the point without unnecessary words. Every word serves a purpose in conveying the tool's function, making it appropriately sized and front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (0 parameters, no output schema), the description provides adequate basic information about what it does. However, without annotations and with multiple similar sibling tools, it should ideally clarify what 'extended profile information' means and how this differs from other user data tools.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has 0 parameters with 100% schema description coverage, so the schema already fully documents the parameter situation. The description appropriately doesn't waste space discussing parameters that don't exist, earning a baseline score above 3 for this zero-parameter case.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Retrieve') and resource ('extended profile information for the current user'), making the purpose immediately understandable. However, it doesn't distinguish this tool from sibling tools like 'get_user_account' or 'get_user_info', which appear to serve similar user-related functions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like 'get_user_account' or 'get_user_info'. It mentions 'extended profile information' but doesn't clarify what differentiates it from other user data retrieval tools in the sibling list.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_wallet_balanceGet Wallet BalanceB
Fetch the current balance summary for a specific wallet.
| Name | Required | Description | Default |
|---|---|---|---|
| walletId | Yes | Wallet identifier |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states 'fetch' and 'current balance summary,' implying a read-only operation, but doesn't specify if this requires authentication, has rate limits, returns real-time or cached data, or details the response format (e.g., numeric balance, currency). This leaves significant gaps for a tool that likely involves sensitive financial data.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the core purpose ('Fetch the current balance summary') without unnecessary words. Every part of the sentence contributes directly to understanding the tool's function, making it highly concise and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (one parameter, no output schema, no annotations), the description is minimally adequate but incomplete. It covers the basic purpose but lacks behavioral details (e.g., authentication needs) and usage guidelines, which are important for financial tools. Without an output schema, it also doesn't describe the return value, leaving the agent uncertain about the result format.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, with the single parameter 'walletId' documented as 'Wallet identifier.' The description adds no additional semantic context beyond this, such as format examples (e.g., UUID) or where to obtain the ID. Given the high schema coverage, a baseline score of 3 is appropriate, as the description doesn't compensate but also doesn't detract.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('fetch') and resource ('current balance summary for a specific wallet'), making the purpose immediately understandable. However, it doesn't explicitly differentiate from sibling tools like 'get_wallets' (which might list wallets) or 'get_related_transactions_by_wallet' (which might show transactions), leaving some ambiguity about scope.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. For example, it doesn't mention if this should be used instead of 'get_wallets' for balance details or clarify its role relative to transaction-related tools. Without such context, the agent must infer usage from the tool name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_walletsGet WalletsA
List all wallets accessible to the authenticated user.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| wallets | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It states it's a list operation, implying read-only behavior, but doesn't mention any constraints like pagination, rate limits, authentication requirements beyond 'authenticated user', or what happens if no wallets exist. For a tool with zero annotation coverage, this leaves significant behavioral gaps unaddressed.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that directly states the tool's purpose without any fluff or redundant information. It's front-loaded with the core functionality and appropriately sized for what it needs to communicate.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (0 parameters, has output schema), the description is adequate but minimal. It explains what the tool does but lacks context about behavioral traits (especially with no annotations) and doesn't help differentiate from sibling tools. The presence of an output schema means return values are documented elsewhere, so the description doesn't need to cover that aspect.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has 0 parameters with 100% schema description coverage, so the schema fully documents the lack of inputs. The description appropriately doesn't waste space explaining parameters that don't exist, maintaining focus on the tool's purpose. This meets the baseline expectation for zero-parameter tools.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('List all wallets') and resource ('wallets accessible to the authenticated user'), distinguishing it from siblings like get_wallet_balance (which focuses on balance) or get_shared_wallets (which focuses on shared wallets only). It uses precise language that leaves no ambiguity about what the tool does.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like get_shared_wallets or get_wallet_balance. It mentions 'accessible to the authenticated user' but doesn't clarify if this includes shared wallets, personal wallets only, or how it differs from other wallet-related tools. No explicit when/when-not instructions or alternative recommendations are provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
loginLogin to Money LoverA
Authenticate using Money Lover credentials to retrieve a JWT token.
| Name | Required | Description | Default |
|---|---|---|---|
| Yes | Money Lover account email | ||
| password | Yes | Money Lover account password |
Output Schema
| Name | Required | Description |
|---|---|---|
| token | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. Describes retrieving a token but does not disclose side effects or that the token should be stored for subsequent requests.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence with no unnecessary words. Perfectly concise.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Output schema exists but description does not mention that the token must be used for authorization in other endpoints. Missing context for the authentication flow.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with clear descriptions for both parameters. Description adds no additional meaning beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states the action (authenticate), resource (Money Lover credentials), and output (JWT token). Distinguishes from sibling tools that handle transactions, categories, etc.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Implied that this is the authentication step before using other tools, but no explicit guidance on when to use, prerequisites, or alternatives. Could be more helpful.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_transactionsSearch TransactionsA
Free-form search across transactions using optional filters (walletId, categoryId, keyword, parties). Use this when no date range is given or when doing a keyword/label search instead of a date-range fetch.
| Name | Required | Description | Default |
|---|---|---|---|
| filters | No | Arbitrary filter object forwarded to /transaction/search (e.g. walletId, categoryId, dates, with) | |
| limit | No | Max results to return (default 20) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It mentions the tool is a 'free-form search' and lists some filter types, but doesn't disclose important behavioral traits like whether this is a read-only operation, what permissions are required, whether results are paginated, or what format the results take. For a search tool with no annotation coverage, this leaves significant gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is perfectly concise with just two sentences that each earn their place. The first sentence states the core functionality, and the second provides usage guidance. There's zero wasted text, and the information is front-loaded appropriately.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (search with filters), no annotations, and no output schema, the description provides adequate but incomplete coverage. It explains the purpose and usage context well, but doesn't address behavioral aspects like result format, pagination, or error conditions that would be important for a search operation. The description is functional but leaves gaps in the complete context needed for optimal tool use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents both parameters thoroughly. The description adds some value by listing specific filter examples (walletId, categoryId, keyword, parties) beyond what's in the schema's generic 'Arbitrary filter object' description, but doesn't provide additional syntax or format details. This meets the baseline expectation when schema coverage is high.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose as 'Free-form search across transactions using optional filters' which specifies both the verb (search) and resource (transactions). It distinguishes from siblings by mentioning keyword/label search vs date-range fetch, though it doesn't name specific sibling tools like 'get_transactions' that might handle date-range queries.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit guidance on when to use this tool: 'when no date range is given or when doing a keyword/label search instead of a date-range fetch.' This gives clear context for usage, though it doesn't explicitly name alternative tools or specify when NOT to use it beyond the date-range scenario.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
33 tool updates
v0.0.3- First observed
add_category - First observed
add_transaction - First observed
add_wallet - First observed
delete_category - First observed
delete_transaction - First observed
delete_wallet - First observed
edit_category - First observed
edit_transaction - First observed
edit_wallet - First observed
get_all_categories - First observed
get_awaiting_shared_wallets - First observed
get_categories - First observed
get_currencies - First observed
get_debt_transactions - First observed
get_debts - First observed
get_events - First observed
get_exchange_rates - First observed
get_icons - First observed
get_linked_providers - First observed
get_other_config - First observed
get_related_transactions - First observed
get_related_transactions_by_category - First observed
get_related_transactions_by_wallet - First observed
get_shared_wallets - First observed
get_transaction_search_config - First observed
get_transactions - First observed
get_user_account - First observed
get_user_info - First observed
get_user_profile - First observed
get_wallet_balance - First observed
get_wallets - First observed
login - First observed
search_transactions
TDQS
Scored across 33 tools
Most tools have distinct purposes with clear resource-action pairs, but some overlap exists: get_user_account, get_user_info, and get_user_profile could be confused, and get_related_transactions, get_related_transactions_by_category, and get_related_transactions_by_wallet have subtle distinctions that might cause misselection without careful reading of descriptions.
Tool names follow a highly consistent verb_noun pattern throughout, with clear action prefixes (add_, delete_, edit_, get_, login, search_) and descriptive nouns. There are no deviations in style or convention, making the set predictable and readable.
With 33 tools, the count feels heavy for a personal finance server, bordering on excessive. While it covers many features, it may overwhelm agents and could likely be streamlined without losing core functionality, placing it in the borderline range for appropriateness.
The tool surface provides comprehensive coverage for the Money Lover domain, including full CRUD operations for wallets, categories, and transactions, along with extensive querying, user management, and auxiliary features like debts, events, and search. No obvious gaps exist that would hinder agent workflows.
Maintenance
Related MCP Connectors
- financeOAuthcom.zoninga
Personal finance for AI agents: accounts, budgets, goals, 9-strategy debt payoff, reports. OAuth 2.1
- ManiloOAuthapp.ledgy.api
Log, query, and edit expenses, budgets, and accounts in Manilo (formerly Ledgy) from any MCP-compatible AI assistant.
Track expenses, budgets, balances, transfers, and multi-currency reports with OAuth-secured tools.
- ManiloOAuthapp.manilo
Log, query, and edit expenses, budgets, and accounts in Manilo from any MCP-compatible AI assistant.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceEnables AI agents to interact with the WYGIWYH expense tracking API through 75 dynamically generated MCP tools. Supports comprehensive financial operations including transaction management, account handling, recurring expenses, and investment tracking.7-
- FlicenseNot gradedqualityDmaintenanceEnables AI assistants to interact with YNAB budgets through natural language. Supports managing accounts, categories, transactions, and budget months with 21 tools for comprehensive budget operations.-
- AlicenseAqualityDmaintenanceEnables AI assistants to interact with Money Lover personal finance app through unofficial REST API. Supports authentication, wallet management, transaction querying, and creating new transactions for expense tracking.6115ISC
- AlicenseAqualityDmaintenanceEnables AI assistants to manage personal finances through the Realbyte Money Manager mobile app, providing transaction management, asset tracking, credit card monitoring, and financial analytics with 18 comprehensive tools.181912MIT