Skip to main content
Glama

Statement to Budget

convert_statement

Upload a bank statement (PDF, CSV, XLS, XLSX, or OFX) as base64 and run AI extraction + categorisation. Returns a session_id plus access.level: "full" when an API key with credit was supplied, otherwise "preview" (5 sample rows, other rows masked) with an unlock_url a human can open to buy the full file for $4.99. Large statements can take 1-3 minutes; if status is "processing", poll get_job.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
filenameYesOriginal file name including extension
passwordNoPDF password if the file is locked
content_base64YesFile bytes encoded as base64

Schema Changelog

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

  1. First observed

TDQS

A4.6/5.0
Behavior5/5

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 does this thoroughly by explaining access levels, the preview limitation, unlock_url pricing, row masking, processing time, and the polling behavior. It also reveals the 'full' vs 'preview' distinction based on API key credit, which is essential for setting expectations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is dense but well-structured: the core purpose is front-loaded, and subsequent sentences cover return behavior, limitations, pricing, and polling. It is longer than average, but every clause carries meaningful operational information, so the length is justified.

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

Completeness5/5

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

Given there is no output schema, the description does an excellent job of explaining the return values (session_id, access.level, unlock_url, status) and the asynchronous behavior. It also covers edge cases like large statements and password-protected PDFs. An agent has enough contextual information to invoke the tool and handle the response correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. The description adds value beyond the schema by enumerating the accepted file formats (PDF, CSV, XLS, XLSX, OFX), clarifying that content is base64, and tying the password parameter to locked PDFs. This is useful supplement rather than duplication.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific action ('Upload a bank statement ... and run AI extraction + categorisation'), names the resource and supported formats, and clearly differentiates this tool from siblings by making its role as the upload/extraction entry point obvious. It is immediately clear what the tool does and how it relates to get_job.

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

Usage Guidelines4/5

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

The description gives clear guidance on when to use the tool: to upload a statement and start extraction. It also provides a conditional alternative: if status is 'processing', poll get_job. It does not explicitly mention get_transactions, but the primary usage context and the relationship to get_job are well covered.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4/5.0
Disambiguation5/5

Each tool maps to a distinct stage of the workflow: converting/uploading a statement, polling job status, and fetching results. There is no meaningful overlap between the three actions.

Naming Consistency5/5

All tools use a consistent verb_noun snake_case pattern: convert_statement, get_job, get_transactions. The naming is predictable and easy to navigate.

Tool Count5/5

Three tools is an appropriate minimal set for a single-purpose conversion pipeline. Each tool is necessary and the server avoids extraneous or redundant functionality.

Completeness4/5

The core job lifecycle is fully covered: start a conversion, poll its status, and retrieve transactions. Minor gaps such as session history or cancellation exist, but they are not essential for the server's stated purpose.

Resources