Skip to main content
Glama

Statement to Budget

Server Details

Turn bank statement PDFs, CSVs, XLSX and OFX into categorised transactions plus a summary.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Available Tools

3 tools
convert_statementAInspect

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.

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

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.

get_jobBInspect

Poll a conversion job by session_id. Status is processing, complete, or error.

ParametersJSON Schema
NameRequiredDescriptionDefault
session_idYes

TDQS

B3.3/5.0
Behavior3/5

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

With no annotations, the description must carry the behavioral burden. It does disclose that the status can be processing, complete, or error, which is useful. However, it does not describe the response shape, error details, or whether repeated polling is expected beyond the implication of the word 'Poll'.

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

Conciseness5/5

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

The description is two short sentences with no filler, front-loading the action and the key statuses. Every word contributes to understanding the tool's core behavior.

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

Completeness3/5

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

For a simple one-parameter polling tool, the description is close to sufficient, and listing the statuses hints at the return value. However, without an output schema or annotations, it should also mention where session_id comes from and what a complete or error response contains.

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

Parameters3/5

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

Schema description coverage is 0%, so the description must compensate. It does indicate that session_id identifies the conversion job, adding a bit of meaning beyond the bare string type. It does not explain how to obtain session_id, such as from a convert_statement response.

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

Purpose4/5

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

The description states a specific verb ('Poll') and a specific resource ('a conversion job'), and it lists the possible statuses, so the tool's purpose is clear. It does not explicitly differentiate from sibling tools like convert_statement or get_transactions, but the function is distinct enough by name and phrasing.

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

Usage Guidelines2/5

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

The description gives no guidance on when to use this tool versus convert_statement or get_transactions, and it does not mention prerequisites such as where session_id comes from. The word 'Poll' only implies that this is for checking job status after submission, but the tool does not say that explicitly.

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

get_transactionsAInspect

Fetch categorised transactions and a spending summary for a completed session. Preview sessions return 5 sample rows, locked_rows (date, category, masked description) for the rest, and unlock_url.

ParametersJSON Schema
NameRequiredDescriptionDefault
session_idYes

TDQS

A4.1/5.0
Behavior4/5

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

With no annotations available, the description carries the full transparency burden and does a solid job: it discloses conditional behavior for preview sessions versus completed sessions, mentions the 5-sample-row limit, locked_rows, and unlock_url. It does not cover error cases or authentication, but for a simple fetch tool this is meaningful behavioral detail.

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

Conciseness5/5

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

Two compact sentences: the first front-loads the core function, and the second adds the key behavioral nuance. Every phrase adds information, and there is no redundant or filler wording.

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

Completeness4/5

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

For a one-parameter tool with no output schema, the description covers the main call contexts, including completed sessions and preview sessions, and lists the returned components. It could be more complete by specifying expected error behavior for invalid session IDs, but the essential usage context is present.

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

Parameters2/5

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

The input schema has zero description coverage, and the tool description does not explain the format, origin, or constraints of session_id beyond implying it identifies a session. The session concept is indirectly clarified by the completed/preview distinction, but that is too weak to compensate for a completely undocumented required parameter.

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 verb ('Fetch') and resource ('categorised transactions and a spending summary for a completed session'), which makes the tool's purpose immediately clear. It also distinguishes from siblings like get_job by focusing on transaction data and session completion state, including concrete preview behavior.

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 context that the tool is intended for completed sessions and separately describes what happens for preview sessions. It does not explicitly compare against convert_statement or get_job, but the session-specific wording is enough to guide typical use.

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. Dates show when Glama detected each change.

  1. 3 tool updates
    • First observedconvert_statement
    • First observedget_job
    • First observedget_transactions

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    A
    maintenance
    Parse and query bank statements — turn PDF statements into structured transactions, accounts, and balances, with balance-reconciliation checks. A deterministic financial memory for AI agents, served as a hosted streamable-HTTP endpoint (API key or OAuth).
    1
    MIT
  • A
    license
    A
    quality
    C
    maintenance
    Converts PDF bank statements into structured data (Markdown, JSON, CSV, JSONL) with verified transactions and balance checks, enabling agents to audit numbers.
    5
    20
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Parse crypto exchange CSVs (Coinbase, Binance, Kraken, +11 more) and bank statement PDFs (Chase, BofA, +11 more) into Koinly, TurboTax, CoinLedger, or ZenLedger formats. Free tier: 25 files/month, no credit card required.
    3
    ISC
  • A
    license
    A
    quality
    A
    maintenance
    Converts customer-supplied PDF bank statements into checked Excel, CSV, or JSON with balance validation. Runs locally with your own MainBook API key or against MainBook's hosted endpoint, and it never connects to bank accounts.
    5
    MIT
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