Skip to main content
Glama
haonguyen97ftu

avie-moneylover-mcp

Avie Money Lover MCP / Local Bridge

CI License: MIT Node.js 22+

Unofficial Money Lover integration for two workflows:

  1. MCP server — expose Money Lover read/write tools to an MCP-capable client.

  2. GPT + local bridge — let ChatGPT prepare/review statement JSON while your own machine keeps the Money Lover token/cookie and performs the final import.

Unofficial project. This repository is not affiliated with, endorsed by, or sponsored by Money Lover. It uses web endpoints observed from the Money Lover web app. Those endpoints, authentication flows, category behavior, and anti-bot requirements can change without notice.

What it can do

  • Read authenticated user info

  • List wallets and wallet categories

  • Read transactions by date range

  • Resolve Money Lover user_category_v2 source IDs to runtime IDs using transaction history

  • Preview a single transaction without writing

  • Add a transaction with duplicate protection

  • Preview a bank/card statement batch

  • Reconcile expense − income against a statement total

  • Flag exact duplicates, probable duplicates, unresolved categories, and review rows

  • Import sequentially only after explicit confirmation

  • Verify created transactions by reading them back

  • Safely re-run after a partial import: exact duplicates are skipped

Related MCP server: Monarch Money MCP Server

Requirements

  • Windows 10/11, macOS, or Linux

  • Node.js 22+

  • A Money Lover account you control

  • For reliable writes: a fresh wallet-owner session, current browser cookie/cf_clearance if required, and the matching browser User-Agent

Quick start

git clone https://github.com/haonguyen97ftu/avie-moneylover-mcp.git
cd avie-moneylover-mcp
npm install
npm test

Windows helper setup

scripts\setup-windows.cmd

Set credentials in the current shell only:

set "MONEYLOVER_ACCESS_TOKEN=YOUR_FRESH_OWNER_TOKEN"
set "MONEYLOVER_CF_CLEARANCE=YOUR_CURRENT_CF_CLEARANCE_VALUE"
set "MONEYLOVER_USER_AGENT=YOUR_EXACT_BROWSER_USER_AGENT"

Then run:

scripts\doctor.cmd
Bank/card statement
        ↓
ChatGPT extracts + categorizes
        ↓
statement JSON
        ↓
local preview
        ↓
review / duplicate / reconciliation checks
        ↓
explicit IMPORT confirmation
        ↓
Money Lover
        ↓
local verification report

Do not paste Money Lover tokens, refresh tokens, passwords, browser cookies, or cf_clearance into ChatGPT, GitHub issues, logs, or screenshots. ChatGPT only needs the statement plus the generated preview/result JSON.

Preview a statement

scripts\preview.cmd data\your-statement.json

Import after review

scripts\import.cmd data\your-statement.json

The importer requires you to type exactly:

IMPORT

before writes begin.

See docs/HUONG_DAN_SU_DUNG.md for the complete Vietnamese guide.

API behavior observed

Authenticated requests currently use:

Authorization: AuthJWT <access_token>

Observed endpoints:

Client method

HTTP

Endpoint

getUserInfo()

POST

/api/user/info

getWallets()

POST

/api/wallet/list

getCategories(walletId)

POST

/api/category/list

getTransactions(...)

POST

/api/transaction/list

addTransaction(...)

POST

/api/transaction/add

Writes may require browser-like headers and a current Cloudflare session. Supported environment variables include:

  • MONEYLOVER_ACCESS_TOKEN

  • MONEYLOVER_CF_CLEARANCE

  • MONEYLOVER_COOKIE

  • MONEYLOVER_USER_AGENT

  • MONEYLOVER_TIMEOUT_MS

  • MONEYLOVER_CATEGORY_LOOKBACK_DAYS

  • MONEYLOVER_WRITE_DELAY_MS

Batch statement format

Start from data/example-statement.json. Full field documentation is in docs/STATEMENT_FORMAT.md.

Preview:

npm run preview -- data\your-statement.json

Import:

npm run import -- data\your-statement.json

Optional flags:

  • --allow-review — include rows intentionally left in review after you inspect them

  • --allow-mismatch — bypass statement reconciliation protection; use only when you understand the discrepancy

  • --allow-shared-wallet — bypass the owner safety check; shared-wallet writes may still fail

  • --confirm IMPORT — non-interactive confirmation; not recommended for ordinary manual use

Safety defaults

The importer refuses to write when:

  • any row is blocked

  • a review row exists unless --allow-review is supplied

  • the statement reconciliation difference is non-zero unless --allow-mismatch is supplied

  • the authenticated user is not the wallet owner unless --allow-shared-wallet is supplied

  • confirmation is not exactly IMPORT

Amounts must be positive numbers.

Category v2

Some accounts expose a source/template category ID from /category/list, while /transaction/add expects a different runtime category ID. The bridge learns this mapping from existing transactions.

If a category has never appeared in history, copy:

config/runtime-category-overrides.example.json

to:

config/runtime-category-overrides.json

and add the runtime ID observed from a real browser transaction request. The local override file is ignored by Git.

Public-repo safety

The repository is configured to avoid committing local financial data by default:

  • data/*.json is ignored except the sanitized example

  • out/ is ignored

  • .env* is ignored

  • local runtime category overrides are ignored

  • local session helper files are ignored

Before pushing, run:

npm run repo:check
npm test

Then inspect git status manually.

Security

If a token, password, refresh token, browser cookie, or cf_clearance value is ever exposed, treat it as compromised and rotate/revoke the session. See SECURITY.md.

Contributing

Bug reports and pull requests are welcome. Please read CONTRIBUTING.md before submitting changes. Never include real financial statements, account identifiers, tokens, or cookies in issues or test fixtures.

Documentation

License

MIT — see LICENSE.

Available Tools

8 tools
add_transactionAdd a Money Lover transactionA

Create one transaction only after explicit confirmation. Validates category ownership and blocks exact duplicates by default.

ParametersJSON Schema
NameRequiredDescriptionDefault
dateYesTransaction date, YYYY-MM-DD
noteNoOptional note
withNo
tokenNo
amountYesTransaction amount
walletIdYesWallet identifier
categoryIdNoCategory ID from get_categories
categoryNameNoExact category name; resolved inside the wallet
confirmWriteYesMust be true after the user has explicitly approved the write
allowDuplicateNo
runtimeCategoryIdNoRuntime category ID from a real browser transaction request; overrides automatic mapping

TDQS

A3.7/5.0
Behavior4/5

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

With no annotations, the description carries the full burden. It discloses key behaviors: category ownership validation, duplicate blocking, and the confirmation requirement. It does not mention side effects like balance updates or failure modes, but the disclosed behaviors are significant.

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 sentences, with the core action front-loaded and supporting details following. It is concise, avoids redundancy, and is well-structured for quick comprehension.

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?

The description gives enough context to understand the operation's nature but omits information about the return value or what happens on success/failure. Given that there is no output schema and the description does not mention these aspects, it is not fully complete for an agent to anticipate results.

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?

The schema provides descriptions for about 73% of parameters, and the tool description does not add extra meaning to the undocumented ones (e.g., token, with, allowDuplicate). The description relies on the schema, which covers most but not all parameters, so the score is moderate.

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

Purpose4/5

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

The description clearly states the action (create a transaction) and adds context about validation and duplicate blocking. However, it does not explicitly mention the resource (wallet) or differentiate from sibling tools, though the core purpose is evident.

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

Usage Guidelines3/5

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

It specifies that explicit confirmation is required and that duplicates are blocked by default, which provides some usage guidance. However, it does not indicate when to use this tool versus preview_transaction or get_transactions, nor does it mention that this is the write operation.

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

diagnose_write_contextDiagnose Money Lover write contextC

Read-only diagnostics for wallet ownership, browser write config, and category-v2 runtime mapping.

ParametersJSON Schema
NameRequiredDescriptionDefault
tokenNo
walletIdYes
categoryIdNo
categoryNameNo
runtimeCategoryIdNo

TDQS

C2.7/5.0
Behavior3/5

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

The description states 'Read-only,' which is a clear behavioral disclosure that the tool has no side effects. This is valuable given the absence of annotations. However, it does not mention authentication requirements, error behavior, or what the diagnostic output contains. It provides only a minimal behavioral trait and some scope, but the burden is higher without annotations, so a 3 is appropriate.

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

Conciseness4/5

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

The description is a single concise sentence with no fluff. It is front-loaded with 'Read-only' and states the three diagnostic domains compactly. While it could be more informative, the structure is efficient and easy to parse.

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

Completeness1/5

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

This tool has five parameters, no output schema, and no annotations. The description does not explain the purpose of each parameter, what the diagnostic output looks like, or any prerequisites. It is far too sparse to allow an agent to correctly invoke the tool. A comprehensive description would need to cover parameter roles, expected response, and usage context, all of which are missing.

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

Parameters1/5

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

With 0% schema description coverage, the description bears the full responsibility for explaining parameters. It mentions 'wallet ownership,' 'browser write config,' and 'category-v2 runtime mapping,' which could loosely relate to walletId, token, and category fields, but it does not explicitly define any parameter. The token parameter is entirely unaddressed. The description provides no meaningful semantics for the five parameters, so the agent cannot determine what values to supply.

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

Purpose4/5

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

The description clearly states the tool's purpose: 'Read-only diagnostics for wallet ownership, browser write config, and category-v2 runtime mapping.' It names specific resources and the diagnostic nature, which distinguishes it from simple getters like get_wallets or get_categories. It does not explicitly contrast with sibling tools, but the purpose is unambiguous and not a tautology.

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 offers no guidance on when to use this tool versus alternatives. It does not state conditions under which diagnostics are needed, nor does it mention when to avoid using it. While 'diagnostics' implies a troubleshooting use-case, there is no explicit context or exclusion, leaving the agent to guess.

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

get_categoriesList Money Lover categoriesB

Retrieve categories for a specific wallet.

ParametersJSON Schema
NameRequiredDescriptionDefault
tokenNoOptional access token override
walletIdYesWallet identifier

TDQS

B3.3/5.0
Behavior2/5

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. 'Retrieve' indicates a read operation and the wallet scope is clear, but the description does not disclose response shape, error behavior, authentication requirements, or whether default categories are returned.

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

Conciseness5/5

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

A single front-loaded sentence with no filler. Every word earns its place and the key scoping constraint is stated directly.

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 list operation with complete schema coverage, the description is minimally sufficient: an agent knows what to call and with what scope. However, the absence of annotations and output schema leaves some gaps around return format and behavior.

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

Parameters3/5

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

Schema description coverage is 100%, so the baseline is 3. The description adds only the contextual link 'for a specific wallet' to walletId, while token is already documented in the schema.

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 ('Retrieve') and a clear resource ('categories') for a specific wallet, so the purpose is obvious and distinct from sibling tools like get_wallets or get_transactions. It does not explicitly contrast itself with a sibling, so it stops short of a 5.

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

Usage Guidelines3/5

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

Usage is implied by the wording: an agent would use this when it needs categories for a wallet. However, there is no explicit when-to-use guidance, no exclusions, and no mention of alternatives.

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

get_transactionsGet Money Lover transactionsB

Fetch transactions for a wallet between two dates.

ParametersJSON Schema
NameRequiredDescriptionDefault
tokenNoOptional access token override
endDateYesEnd date, YYYY-MM-DD
walletIdYesWallet identifier
startDateYesStart date, YYYY-MM-DD

TDQS

B3.2/5.0
Behavior2/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 mentions 'fetch', which implies read-only, but does not explicitly state side-effect-free behavior, authentication requirements, pagination, or return format. The agent lacks critical context about what happens when this tool is called.

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

Conciseness5/5

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

The description is a single, efficient sentence with zero redundancy. It is appropriately front-loaded with the core action and scope, and every word earns its place.

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

Completeness2/5

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

Given the tool has 4 parameters, no output schema, and no annotations, the description is too sparse. It fails to mention return format (e.g., list vs single object), pagination, error handling, or whether the token parameter is ever required. An agent would lack sufficient information to correctly interpret the response.

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

Parameters3/5

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

Schema description coverage is 100%, so all parameters are already documented in the schema. The description adds minimal extra meaning ('between two dates' clarifies the date range, 'for a wallet' reinforces walletId), but does not provide new details beyond what the schema already contains.

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 'Fetch transactions for a wallet between two dates' clearly states the verb (fetch), resource (transactions), and scope (wallet + date range). It distinguishes itself from siblings like get_wallets and get_categories, which target different resources.

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?

No guidance is given on when to use this tool versus alternatives like preview_transaction or add_transaction. The description simply states what it does, leaving the agent to infer when it is appropriate without explicit context or exclusions.

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

get_user_infoGet Money Lover user infoC

Retrieve the authenticated Money Lover profile.

ParametersJSON Schema
NameRequiredDescriptionDefault
tokenNoOptional access token override

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full disclosure burden. It hints that authentication is required ('authenticated profile') but does not state what happens when no valid token exists, how the token override interacts with the default auth context, or what the returned profile contains. For an operation with zero annotation coverage this is a gap.

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?

A single, front-loaded sentence with no fluff. It's efficiently written, though its brevity is partly why behavioral details are missing — the compactness is good, the content is thin.

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?

This is a simple tool — one optional parameter, no output schema, no nested objects — so a minimal description is nearly sufficient. But for a read operation it would benefit from stating the fallback behavior when no token override is supplied and whether unauthenticated calls error out. Adequate but lean.

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 coverage is 100% on the single token parameter ('Optional access token override'), so the schema already documents it. The tool description adds no parameter-level meaning beyond what the schema conveys, so baseline 3 is appropriate.

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?

Clear verb+resource (retrieve the authenticated profile) that distinguishes it from the data-fetching siblings (get_wallets, get_categories, get_transactions). However, it doesn't explicitly differentiate from login, which also concerns authentication — the boundary between 'fetch the profile' and 'authenticate' is implied rather than stated.

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?

No guidance on when to call this tool or when to prefer it over siblings. Given that the token parameter is described as an 'override,' the description never states that prior authentication (via login) is a prerequisite, nor does it mention any condition under which this should or shouldn't be used.

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

get_walletsList Money Lover walletsB

List all wallets accessible to the authenticated user.

ParametersJSON Schema
NameRequiredDescriptionDefault
tokenNoOptional access token override

TDQS

B3.2/5.0
Behavior2/5

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 explaining behavior. It says 'List' which implies a read, but it doesn't explicitly state it's non-destructive, doesn't mention response structure, pagination, rate limits, or any side effects. The

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?

One sentence, no fluff, but it's so short it doesn't convey much. For a simple tool it's acceptable, but there's room for additional clarifiers. However, front-loading is good.

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?

The tool is simple, the description covers the core purpose. However, no mention of return format, pagination, or any edge cases. Given no annotations and no output schema, a bit more would help, but the simplicity might justify a 3.

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 covers the single optional token parameter with a description. The tool description adds nothing about the parameter's usage or purpose beyond the schema. Baseline 3 is appropriate.

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 uses a specific verb ('List') and resource ('wallets'), and adds a clear scope ('accessible to the authenticated user'), distinguishing it from other list-style tools that operate on different resources. This leaves no ambiguity about what the tool returns.

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?

No guidance on when to use this tool versus alternatives like get_transactions or get_categories. It doesn't mention any prerequisites (e.g., authentication token), nor does it explain when not to use it. The description is a bare statement with no usage context.

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 with Money Lover and return an access token.

ParametersJSON Schema
NameRequiredDescriptionDefault
emailYesMoney Lover account email
passwordYesMoney Lover account password

TDQS

A3.7/5.0
Behavior3/5

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 discloses the core behavior—authenticating and returning an access token—but omits token lifetime, session effects, or error behavior. This is adequate for a simple login but not rich.

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?

One compact sentence with no filler; the authentication action and return value are front-loaded. Every word earns its place.

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?

The description is sufficient for a simple two-parameter login call, but without annotations or an output schema it leaves the token's subsequent use unspecified and does not describe the response shape. These are meaningful gaps for an agent needing to chain this with sibling tools.

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

Parameters3/5

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

Both parameters are fully described in the schema (100% coverage), so the description adds no parameter-level detail beyond what the schema already provides. The baseline 3 applies.

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?

States a specific verb ('Authenticate') and resource ('Money Lover'), and clearly distinguishes itself from the sibling data-operation tools by being the only authentication tool. It also specifies the outcome: returning an access token.

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

Usage Guidelines3/5

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

The description conveys that login is for obtaining an access token, which implies it should precede authenticated calls, but it never explicitly says 'call this before other tools' or mentions alternatives/exclusions. Usage context is therefore implied rather than stated.

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

preview_transactionPreview a Money Lover transactionB

Resolve a category and check for an exact duplicate without writing anything.

ParametersJSON Schema
NameRequiredDescriptionDefault
dateYes
noteNo
tokenNo
amountYes
walletIdYes
categoryIdNo
categoryNameNo
runtimeCategoryIdNoRuntime category ID observed in a browser transaction request; useful for user_category_v2 accounts

TDQS

B3.4/5.0
Behavior4/5

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

With no annotations supplied, the description carries full responsibility for disclosing behavior. It does well by explicitly stating that no write occurs, which is the most important behavioral trait for an AI agent to know. It also indicates that category resolution and duplicate detection are performed, adding meaningful behavioral context beyond argument names.

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

Conciseness5/5

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

The description is a single efficient sentence: an action, a result, and a safety constraint, all without redundancy. It front-loads the core behavior and does not waste tokens on restating the name or title.

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

Completeness2/5

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

The tool has 8 parameters, no output schema, no annotations, and minimal schema descriptions, so the description must carry substantial weight. It covers the no-write safety message and category resolution, but omits the expected return value, behavior when a duplicate is found, error handling, authentication via token, and how to choose categoryId versus categoryName. An agent would be under-served when attempting to correctly invoke this tool.

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?

Schema description coverage is only 13%, and the schema contains no descriptions for 7 of 8 parameters. The description's mention of category resolution relates to categoryId/categoryName, but it does not explain amount, date, note, walletId, token, or runtimeCategoryId. The agent must infer their meanings from names and types alone, which is risky.

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

Purpose4/5

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

The description clearly states two concrete behaviors: resolving a category and checking for an exact duplicate, while explicitly noting that nothing is written. It gives the tool an identity beyond its title, though it stops short of explicitly naming how this differs from sibling tools like add_transaction.

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

Usage Guidelines3/5

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

The phrase 'without writing anything' implies this is a read-only/preflight variant of add_transaction, giving some contextual guidance. However, it never explicitly says when to prefer this tool over add_transaction, diagnose_write_context, or get_categories, nor does it mention prerequisites like being logged in.

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.

  1. 8 tool updatesv1.0.0
    • First observedadd_transaction
    • First observeddiagnose_write_context
    • First observedget_categories
    • First observedget_transactions
    • First observedget_user_info
    • First observedget_wallets
    • First observedlogin
    • First observedpreview_transaction

TDQS

A3.5/5.0

Scored across 8 tools

Disambiguation5/5

Each tool has a clear, distinct purpose: login, user info, wallets, categories, transactions (list, preview, add), and diagnostics. No two tools overlap in functionality.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern (e.g., get_wallets, add_transaction, diagnose_write_context). Although verbs vary, they match the action type appropriately, and the naming is uniform and predictable.

Tool Count5/5

With 8 tools, the server is well-scoped for a personal finance app. It covers authentication, read operations, transaction creation, and diagnostics without bloat or redundancy.

Completeness3/5

The tool set covers authentication, reading of user/wallets/categories/transactions, and adding transactions. However, it lacks update and delete operations for any resource, which are notable gaps in a typical CRUD lifecycle. This could hinder agents from correcting mistakes or modifying data.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    B
    maintenance
    Provides an MCP server for querying and managing Monarch Money personal finance data through a local SQLite mirror with read-only SQL access. It enables users to sync transaction history from the Monarch API and analyze accounts, categories, and tags.
    1
    MIT
  • A
    license
    C
    quality
    D
    maintenance
    Enables interaction with Monarch Money data via MCP tools for accounts, budgets, and transactions.
    6
    98 npm
    4
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    Enables local read-only exploration of Quicken Simplifi financial data through MCP, with tools for searching transactions, categories, tags, and merchants, using a local SQLite cache and token-based authentication.
    MIT
  • F
    license
    Not graded
    quality
    C
    maintenance
    Enables local analysis of personal finance data from a Monter JSON export, answering questions about spending, subscriptions, debts, and more via MCP-capable assistants without any cloud servers.
    -