Skip to main content
Glama
robshox

Lunch Money MCP Server

by robshox

Lunch Money MCP サーバー

TypeScript Node.js ライセンス

Lunch Money の個人財務データと AI エージェントが対話できるようにする Model Context Protocol (MCP) サーバーです。

機能

この MCP サーバーは、財務データを管理するための 15 個のツールを公開しています。

ユーザーとアカウント

  • get_user — プロフィールとアカウント情報を取得する

カテゴリ

  • get_categories — すべてのカテゴリを一覧表示する(フラットまたはネスト)

  • create_category — 新しいカスタムカテゴリを作成する

  • update_category — 既存のカテゴリを修正する

取引

  • get_transactions — フィルタ(日付範囲、カテゴリ、ステータスなど)を使用して取引をクエリする

  • create_transaction — 新しい取引を追加する(単一または最大 500 件のバッチ)

  • update_transaction — 取引を更新するか、複数のエントリに分割する

資産と口座

  • get_assets — 手動管理されている資産を一覧表示する

  • create_asset — 新しい手動資産を追加する

  • get_plaid_accounts — Plaid 連携済みの銀行口座を一覧表示する

  • trigger_plaid_fetch — Plaid 口座の同期をトリガーする

予算と計画

  • get_budgets — あらゆる日付範囲の予算と支出を表示する

  • upsert_budget — 予算額を設定または更新する

  • get_recurring_items — 定期的な支出と収入を表示する

タグ

  • get_tags — すべての取引タグを一覧表示する

Related MCP server: YNAB Assistant

前提条件

  • Node.js 18 以降

  • API アクセス権を持つ Lunch Money アカウント

  • 開発者ページ から取得した Lunch Money API キー

インストール

オプション 1: クローンとビルド(ローカル stdio トランスポート)

Cursor、Claude Desktop、またはその他の stdio ベースの MCP クライアントでローカルに使用する場合:

# Clone the repository
git clone https://github.com/yourusername/lunchmoney-mcp.git
cd lunchmoney-mcp

# Install dependencies
npm install

# Build the TypeScript
npm run build

オプション 2: Cloudflare Workers(リモート HTTP トランスポート)

HTTP 経由でアクセス可能なリモート MCP サーバーとしてデプロイする場合:

# Clone the repository
git clone https://github.com/yourusername/lunchmoney-mcp.git
cd lunchmoney-mcp

# Install dependencies
npm install

# Set your API key as a secret
npx wrangler secret put LUNCH_MONEY_API_KEY
# Enter your Lunch Money API key when prompted

# Deploy to Cloudflare Workers
npm run deploy

オプション 3: npx を使用する(ローカルのみ)

クローンせずに MCP サーバーを直接実行できます:

npx -y lunchmoney-mcp

注: LUNCH_MONEY_API_KEY 環境変数を設定する必要があります。

設定

API キーの取得

  1. Lunch Money にログインする

  2. 設定 → 開発者 に移動する

  3. 新しい API キーを生成する

  4. キーをコピーする(安全に保管してください!)

Cursor IDE

Cursor の MCP 設定 (~/.cursor/mcp.json) に追加します:

{
  "mcpServers": {
    "lunchmoney": {
      "command": "node",
      "args": ["/path/to/lunchmoney-mcp/dist/index.js"],
      "env": {
        "LUNCH_MONEY_API_KEY": "your_api_key_here"
      }
    }
  }
}

または npx を使用する場合:

{
  "mcpServers": {
    "lunchmoney": {
      "command": "npx",
      "args": ["-y", "lunchmoney-mcp"],
      "env": {
        "LUNCH_MONEY_API_KEY": "your_api_key_here"
      }
    }
  }
}

Claude Desktop

Claude Desktop の設定 (~/Library/Application Support/Claude/claude_desktop_config.json、macOS の場合) に追加します:

{
  "mcpServers": {
    "lunchmoney": {
      "command": "node",
      "args": ["/path/to/lunchmoney-mcp/dist/index.js"],
      "env": {
        "LUNCH_MONEY_API_KEY": "your_api_key_here"
      }
    }
  }
}

その他の MCP クライアント

stdio トランスポートをサポートするすべての MCP クライアントでこのサーバーを使用できます。LUNCH_MONEY_API_KEY 環境変数を設定して実行してください:

node /path/to/lunchmoney-mcp/dist/index.js

Cloudflare Workers 経由のリモート MCP(API キー持ち込み)

Cloudflare Workers のデプロイメントは、各ユーザーが独自の API キーを持ち込む パブリック MCP サーバー として設計されています。サーバーが API キーを保存することはありません。

仕組み:

  1. サーバーを Cloudflare Workers にデプロイする(または共有インスタンスを使用する)

  2. 各ユーザーが自身の Lunch Money API キーで接続する

  3. API キーは各リクエストの X-LunchMoney-API-Key ヘッダーで送信される

mcp-remote プロキシでの接続:

{
  "mcpServers": {
    "lunchmoney": {
      "command": "npx",
      "args": ["mcp-remote", "https://lunchmoney-mcp.your-subdomain.workers.dev/mcp"],
      "env": {
        "MCP_HEADERS": "X-LunchMoney-API-Key: your_api_key_here"
      }
    }
  }
}

注: mcp-remote プロキシはカスタムヘッダーをサポートしている必要があります。一部の MCP クライアントではまだサポートされていない場合があります。

⚠️ mcp.json ファイルは認証情報ファイルのように扱ってください。 このファイルには Lunch Money API キーが含まれています。Git リポジトリ(ドットファイルリポジトリを含む)には絶対にコミットしないでください。リポジトリ内にある場合は .gitignore に追加してください。このファイルへの読み取りアクセス権を持つ人は誰でも、あなたの Lunch Money データを読み取り、変更できます。

セキュリティ: このモデルが最も安全な理由は以下の通りです:

  • サーバーが API キーを保存しない

  • 各ユーザーは自分のデータにのみアクセスできる

  • API キーはリクエストごとに渡され、サーバーには保存されない

  • パブリックワーカーは IP ごとのレート制限を強制し、リクエスト本文やヘッダーをログに記録しない

Cloudflare Workers デプロイメント(パブリックサーバー)

これにより、誰でも自分の API キーで使用できる パブリック MCP サーバー が作成されます。サーバーは認証情報を保存しません。

前提条件

  • Cloudflare アカウント(無料枠で動作します)

  • Wrangler CLI がインストールされていること

デプロイ

  1. 依存関係のインストール:

 npm install
  1. Cloudflare Workers へのデプロイ:

 npm run deploy
  1. パブリック MCP サーバーが稼働しました! URL が出力に表示されます:

 https://lunchmoney-mcp.your-account.workers.dev/mcp

オプション: テスト用にデフォルトの API キーを設定できます:

npx wrangler secret put LUNCH_MONEY_API_KEY

ユーザーの接続方法

ユーザーは 自分自身の Lunch Money API キーを使用してパブリックサーバーに接続します:

{
  "mcpServers": {
    "lunchmoney": {
      "command": "npx",
      "args": ["mcp-remote", "https://lunchmoney-mcp.your-account.workers.dev/mcp"],
      "env": {
        "MCP_HEADERS": "X-LunchMoney-API-Key: their_api_key_here"
      }
    }
  }
}

Wrangler を使用したローカル開発

# Run locally with hot reload
npm run dev:worker

セキュリティモデル

  • サーバーは API キーを保存しない — キーはヘッダーを介してリクエストごとに渡される

  • ユーザーは自分のデータにのみアクセスできる — 各リクエストはユーザー自身のキーを使用する

  • 公開アクセス可能 — 誰でもサーバーを使用できるが、各自の Lunch Money アカウントが必要

これはパブリック API ゲートウェイの仕組みと似ています。インフラストラクチャは共有されますが、認証情報はユーザーごとです。

使用例

設定が完了すると、AI アシスタントに次のような質問ができます:

  • 「今月のカテゴリ別の支出を見せて」

  • 「先週の最大の支出は何だった?」

  • 「3 月の未分類の取引をすべて分類して」

  • 「'フリーランス収入' という新しいカテゴリを作成して」

  • 「第 1 四半期に食料品にいくら使った?」

  • 「定期的なサブスクリプションをすべてリストアップして」

開発

ローカル stdio モード(Cursor、Claude Desktop 用)

# Install dependencies
npm install

# Run in development mode with hot reload
npm run dev

# Build for production
npm run build

# Type check without emitting
npm run typecheck

# Test with MCP Inspector
npm run inspect

Cloudflare Workers モード(リモート HTTP アクセス用)

# Build the Worker
npm run build

# Run locally with Wrangler
npm run dev:worker

# Deploy to production
npm run deploy

プロジェクト構造

src/
├── index.ts           # MCP server entry point (stdio mode)
├── worker.ts          # Cloudflare Workers entry point (HTTP mode)
├── client.ts          # Lunch Money API client
├── types.ts           # TypeScript type definitions
├── tool-utils.ts      # Shared tool utilities
└── tools/             # Individual tool implementations
    ├── user.ts
    ├── categories.ts
    ├── transactions.ts
    ├── assets.ts
    ├── plaid.ts
    ├── budgets.ts
    ├── recurring.ts
    └── tags.ts

デプロイモード

モード

トランスポート

ユースケース

エントリポイント

ローカル

stdio

Cursor, Claude Desktop

src/index.ts

Cloudflare Workers

ストリーミング HTTP

リモートアクセス, Web クライアント

src/worker.ts

両方のモードで同じツール実装と API クライアントを共有します。

セキュリティ

API キーの保護

  • API キーをコミットしないでください。 そのため .env ファイルは .gitignore に含まれています。

  • キーは環境変数または安全な MCP 設定ファイルに保存してください。

  • キーが漏洩した場合は、直ちに Lunch Money 開発者ページ で取り消し、新しいキーを生成してください。

データプライバシー

  • このサーバーは、AI アシスタントと Lunch Money の間のプロキシとして機能します。

  • 財務データは Lunch Money のプライバシーポリシー に従って処理されます。

  • エラーメッセージは、誤った情報開示を防ぐためにサニタイズされます。

権限

提供する API キーによって、MCP サーバーが実行できるアクションが決まります。Lunch Money API キーで可能なこと:

  • すべての財務データの読み取り

  • 取引の作成、更新、削除

  • カテゴリと予算の変更

  • Plaid 同期のトリガー

API リファレンス

この MCP サーバーは Lunch Money API v1 を使用しています。

レート制限

Lunch Money API にはレート制限があります。MCP サーバーは API からのレート制限エラーをそのまま通過させます。レート制限に達した場合は、数分待ってから再試行してください。

エラーハンドリング

サーバーは Lunch Money API エラーを処理し、MCP ツールエラーとして返します。注意点:

  • Lunch Money は論理エラーを HTTP 200 レスポンスとして返すことがありますが、これらは適切なエラーに正規化されます

  • サーバーは潜在的な機密情報を削除するためにエラーメッセージをサニタイズします

  • デバッグのために、エラーの詳細は stderr に記録されます

トラブルシューティング

「Missing LUNCH_MONEY_API_KEY」エラー

LUNCH_MONEY_API_KEY 環境変数が設定されていません。MCP 設定を確認し、キーが正しく設定されていることを確認してください。

「Unauthorized」エラー

API キーが無効か、取り消されている可能性があります。https://my.lunchmoney.app/developers でキーを確認してください。

取引が表示されない

Plaid 連携口座を使用している場合、同期をトリガーする必要があるかもしれません:

  • trigger_plaid_fetch ツールを使用してバックグラウンド同期をキューに入れます

  • これはジョブをキューに入れるだけであるため、取引が表示されるまでに数分かかる場合があります

貢献

貢献を歓迎します!お気軽にプルリクエストを送信してください。

  1. リポジトリをフォークする

  2. フィーチャーブランチを作成する (git checkout -b feature/amazing-feature)

  3. 変更をコミットする (git commit -m 'feat: add amazing feature')

  4. ブランチにプッシュする (git push origin feature/amazing-feature)

  5. プルリクエストを開く

ライセンス

このプロジェクトは ISC ライセンスの下でライセンスされています。詳細は LICENSE ファイルを参照してください。

謝辞

サポート

  • この MCP サーバーに関する問題は、GitHub の issue を開いてください

  • Lunch Money API に関する質問は、Lunch Money API ドキュメント を参照してください

  • MCP プロトコルに関する質問は、MCP ドキュメント を参照してください


免責事項: これは非公式のコミュニティプロジェクトです。Lunch Money とは提携しておらず、推奨もされていません。

Available Tools

15 tools
create_assetC

Create a manually managed asset in Lunch Money.

ParametersJSON Schema
NameRequiredDescriptionDefault
type_nameYes
subtype_nameNo
nameYes
display_nameNo
balanceYes
balance_as_ofNo
currencyNo
institution_nameNo
closed_onNo
exclude_transactionsNo

TDQS

C2.2/5.0
Behavior1/5

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

With no annotations provided, the description carries the full burden for behavioral disclosure. The single sentence only states the action, omitting any details about side effects, required permissions, rate limits, or response behavior. This is critically insufficient for a creation tool.

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

Conciseness3/5

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

The description is a single, grammatically correct sentence. However, it is too brief to be useful; conciseness should not come at the cost of essential information. It could be expanded while remaining concise.

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?

Given the tool's complexity (10 parameters, no output schema, and no annotations), the description is extremely incomplete. It fails to explain the concept of a 'manually managed asset', how it fits into the Lunch Money system, or what the return value would be. The agent would struggle to use this tool correctly.

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?

The input schema has 10 parameters with 0% schema description coverage, meaning the names and types are the only clues. The description adds no explanation of parameter meanings, constraints, or relationships. For example, 'balance' is required but its format or default currency is not clarified.

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 verb ('create') and the resource ('manually managed asset'), and it distinguishes from sibling tools like 'create_category' which deal with different entities. However, it could be more specific about what constitutes a 'manually managed asset' in Lunch Money.

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 provides no guidance on when to use this tool versus alternatives, nor does it mention any prerequisites or scenarios where it should not be used. This lack of context forces the agent to infer usage from the name alone.

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

create_categoryC

Create a new Lunch Money category.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYes
descriptionNo
is_incomeNo
exclude_from_budgetNo
exclude_from_totalsNo
archivedNo
group_idNo

TDQS

C2.6/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 only states 'Create a new...', which implies a write operation but does not mention side effects, authentication needs, or whether the operation is idempotent. For a mutation tool, this is minimal transparency.

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 that immediately states the purpose. It is front-loaded and efficient, with no extraneous words. However, it is too brief and sacrifices informativeness for brevity.

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's complexity (7 parameters, no output schema, no annotations), the description is incomplete. It does not explain how parameters like 'group_id' or 'archived' affect the behavior, nor does it describe the return value or success indicators. 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.

Parameters1/5

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

The schema has 7 parameters with 0% description coverage, meaning the description adds no explanation for any parameter. The description does not compensate for the lack of schema descriptions. It does not clarify the meaning of 'is_income', 'exclude_from_budget', etc., which are non-obvious. The baseline is low due to low coverage.

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') and the resource ('a new Lunch Money category'), specifying the verb and object. It distinguishes from sibling tools like 'update_category' and 'get_categories' by implying the creation operation. However, it lacks additional context such as the domain or scope.

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 provides no guidance on when to use this tool versus alternatives. There is no mention of prerequisites, such as requiring an existing group_id, or when to use 'update_category' instead. The name and siblings imply a create operation, but no explicit context is given.

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

create_transactionC

Create one or more Lunch Money transactions.

ParametersJSON Schema
NameRequiredDescriptionDefault
transactionsYes
apply_rulesNo
skip_duplicatesNo
check_for_recurringNo
debit_as_negativeNo
skip_balance_updateNo

TDQS

C2.5/5.0
Behavior1/5

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

The description fails to disclose any behavioral traits (e.g., idempotency, duplicate handling, balance update effects) beyond what is minimally implied by 'Create'. No annotations are present to compensate.

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 extremely concise (one sentence) and front-loaded with the purpose. However, it lacks any structure or additional sections, which is acceptable given the single sentence.

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?

Given the complexity of the input schema (many parameters, nested objects) and the absence of annotations and output schema, the description is severely incomplete. It does not explain return values, error cases, or any behavioral details.

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?

Schema description coverage is 0%. The description adds no meaning to the many parameters, such as apply_rules, debit_as_negative, or skip_duplicates, leaving their semantics entirely to the schema.

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 clearly states the verb 'Create' and the resource 'one or more Lunch Money transactions', which distinguishes it from sibling tools like update_transaction and get_transactions.

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 provided on when to use this tool versus alternatives such as update_transaction, nor are there any prerequisites or constraints mentioned.

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

get_assetsA
Read-only

List manually managed Lunch Money assets.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.1/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, so the description's minimal addition of 'manually managed' provides some extra context about the type of assets, but it doesn't contradict annotations or add significant behavioral traits.

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?

Single short sentence with no waste; perfectly front-loaded and to the point.

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?

For a simple listing tool with no parameters and a readOnly annotation, the description provides adequate context, including the asset type (manually managed). No output schema exists, but the tool's behavior is straightforward.

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?

Input schema has no parameters and is fully covered (100%). Description adds value by specifying 'manually managed', which clarifies the scope beyond the empty schema.

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?

Description uses specific verb 'List' and clearly identifies the resource as 'manually managed Lunch Money assets', distinguishing it from siblings like get_plaid_accounts and create_asset.

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?

No explicit guidance on when to use or when not to use this tool versus alternatives. However, the purpose is clear enough that an agent can infer it's for listing only manual assets, not Plaid accounts.

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

get_budgetsA
Read-only

Get Lunch Money budgets and spending for a date range.

ParametersJSON Schema
NameRequiredDescriptionDefault
start_dateYes
end_dateYes
currencyNo

TDQS

A3.7/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, and the description adds that it returns both budgets and spending, providing context beyond the annotation. No contradictions.

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

Conciseness4/5

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

A single, front-loaded sentence with no wasted words. It is concise but could benefit from slightly more detail without sacrificing brevity.

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 covers purpose and basic output, but lacks parameter explanations and output schema details. For a 3-parameter tool with no output schema, it provides adequate but not comprehensive context.

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 coverage is 0%: the description does not explain any parameter. While 'date range' hints at start_date/end_date, it omits details on format, optional currency, and usage.

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 clearly states the action 'Get' and the resource 'Lunch Money budgets and spending', specifying a date range. It effectively distinguishes from sibling tools like upsert_budget, which is for modifications.

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 implies use when retrieving budget data for a date range but provides no explicit guidance on when to avoid this tool or mention alternatives like upsert_budget.

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

get_categoriesA
Read-only

List Lunch Money categories in flattened or nested form.

ParametersJSON Schema
NameRequiredDescriptionDefault
formatNo

TDQS

A3.8/5.0
Behavior3/5

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

Annotations already indicate readOnlyHint=true, so description's value is limited. It adds the format choice but lacks details on response structure, pagination, or ordering.

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?

Single sentence, front-loaded with verb and resource, no unnecessary words. Highly efficient.

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 simple read-only list tool with one optional enum parameter, the description covers the core function and parameter. Lacks mention of output structure, but adequate given simplicity and lack of output schema.

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?

The single parameter 'format' has an enum, and the description explains its two values ('flattened or nested'), adding meaning beyond the schema (which has 0% description coverage).

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 clearly states the verb 'List' and the resource 'Lunch Money categories', and distinguishes its output format options ('flattened or nested') from sibling tools like create_category or update_category.

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 similar list tools (e.g., get_assets, get_tags). No mention of use cases, limitations, or exclusions.

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

get_plaid_accountsA
Read-only

List Lunch Money Plaid-connected accounts.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.6/5.0
Behavior2/5

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

Annotations already indicate readOnlyHint=true, and the description adds no further behavioral details (e.g., data freshness, pagination, or authentication requirements). It simply repeats the read-only nature implied by the annotation.

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, clear sentence with no wasted words. It is concise but could benefit from a bit more detail without becoming verbose.

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 parameterless list tool, the description is adequate but lacks context about potential prerequisites (e.g., Plaid link requirement) or relationship to sibling tools like trigger_plaid_fetch. No output schema exists, but the simplicity of the tool reduces the need for extensive documentation.

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?

There are no parameters in the input schema, so the description does not need to elaborate on parameter meaning. The baseline is 4 for zero-parameter tools.

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 the specific verb 'List' and identifies the resource as 'Lunch Money Plaid-connected accounts,' clearly distinguishing it from sibling tools like get_assets or get_categories.

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 does not provide explicit usage guidance, such as when to use this tool versus alternatives like trigger_plaid_fetch. The purpose is clear, but no context on prerequisites or limitations is given.

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

get_recurring_itemsA
Read-only

Get Lunch Money recurring items for the current or specified month range.

ParametersJSON Schema
NameRequiredDescriptionDefault
start_dateNo
end_dateNo
debit_as_negativeNo

TDQS

A3.6/5.0
Behavior3/5

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

Annotations already mark this as readOnlyHint=true, and the description aligns with a read operation. Beyond that, no additional behavioral traits (e.g., rate limits, data freshness) are disclosed. The description adds minimal extra context.

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

Conciseness5/5

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

The description is a single sentence of 12 words, front-loaded with the key action and resource. Every word earns its place with no redundancy.

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?

Given the tool has 3 parameters and no output schema, the description covers the core purpose but omits details on the debit_as_negative parameter and response format. It is adequate for low complexity but not fully complete.

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 0% with 3 parameters. The description hints at start_date/end_date via 'month range' but does not explain debit_as_negative or provide format details. It fails to compensate for low schema coverage.

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 clearly states the verb 'Get' and resource 'Lunch Money recurring items' with scope 'current or specified month range', distinguishing it clearly from sibling tools like get_transactions and get_budgets.

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 implies usage for month ranges but provides no explicit guidance on when to use this tool versus alternatives such as get_transactions or get_budgets. No exclusions or comparison are given.

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

get_tagsA
Read-only

List all Lunch Money tags.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already provide readOnlyHint=true, confirming it's a read operation. The description adds the scope 'all', which is useful context beyond annotations.

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 sentence of four words, perfectly front-loaded and without any wasted words.

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?

While the description is adequate for a simple list tool with no parameters, it lacks information about the return format or fields of the tags. Without an output schema, the description should provide more detail.

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?

No parameters exist in the schema (100% coverage), so baseline is 4. The description does not need to add parameter information.

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 'tags', clearly stating it returns all tags. This distinguishes it from sibling tools that deal with other resources.

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?

No explicit guidance on when to use versus alternatives. Since there are no sibling tag tools, usage is implied, but no exclusions or when-not-to-use are provided.

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

get_transactionsC
Read-only

Get Lunch Money transactions with optional filters.

ParametersJSON Schema
NameRequiredDescriptionDefault
tag_idNo
recurring_idNo
plaid_account_idNo
category_idNo
asset_idNo
is_groupNo
statusNo
start_dateNo
end_dateNo
debit_as_negativeNo
pendingNo
offsetNo
limitNo

TDQS

C2.4/5.0
Behavior2/5

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

While annotations indicate readOnlyHint=true (safe read), the description does not add any behavioral details beyond the obvious. It omits information about pagination, data format, or potential limits.

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

Conciseness3/5

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

The description is one sentence and concise, but it is too minimal for the complexity of 13 parameters. It is front-loaded but lacks useful structure or breakdown.

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 13 optional parameters and no output schema, the description does not provide enough context about typical usage, required constraints (e.g., date range), or how filtering works. The agent might miss important behaviors like pagination defaults.

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?

Schema description coverage is 0%, and the description only says 'optional filters' without explaining any of the 13 parameters. The agent receives no additional meaning over parameter names, some of which (e.g., debit_as_negative, is_group) are not self-explanatory.

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 verb 'Get' and the resource 'Lunch Money transactions', and mentions optional filters. It is unambiguous and distinguishes from sibling tools like create_transaction or update_transaction by its name and verb.

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 provided on when to use this tool vs. alternatives (e.g., create_transaction for adding, update_transaction for modifying). The agent must infer from context or tool names.

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

get_userA
Read-only

Get information about the Lunch Money user connected to the configured API key.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.9/5.0
Behavior3/5

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

Annotations already indicate readOnlyHint true. The description confirms it's a read operation without adding behavioral details beyond that. It does not specify what specific information is returned or any side effects.

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?

Single sentence that is clear and front-loaded. No unnecessary words or repetition.

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 lacks detail about the return structure. With no output schema, the description should elaborate on what 'information' is returned. It is minimally complete but not comprehensive.

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?

The input schema has zero parameters, and schema coverage is 100%. The description does not need to add parameter semantics. Baseline score of 4 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?

The description clearly states it retrieves information about the Lunch Money user. The verb 'Get' and resource 'information about the Lunch Money user' are specific, and no sibling tool overlaps in purpose.

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?

No explicit guidance on when or when not to use this tool. Since there are no similar siblings, the usage context is implied, but the description does not provide any prerequisites or context for invocation.

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

trigger_plaid_fetchC

Trigger a Lunch Money fetch for eligible Plaid accounts. This queues a background fetch job.

ParametersJSON Schema
NameRequiredDescriptionDefault
start_dateNo
end_dateNo
plaid_account_idNo

TDQS

C2.4/5.0
Behavior2/5

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

No annotations provided, so description carries the burden. It notes the job is queued (async), but does not disclose safety, auth requirements, rate limits, or what happens if a fetch is already in progress.

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

Conciseness3/5

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

Two sentences are concise, but the description is too brief for a tool with 3 parameters and no output schema. It could be structured better with a brief parameter explanation.

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 complexity (3 params, no output schema, no annotations), the description lacks details on return value, error handling, or behavior when fetch is already queued. It is incomplete for safe invocation.

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?

Schema has 3 optional parameters with 0% description coverage. The description does not explain any parameter, leaving the agent to guess their purpose (e.g., date range or account filter).

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?

Description clearly states the action (trigger fetch) and target (eligible Plaid accounts). It mentions queuing a background job, which adds context. However, it does not define 'eligible', which could confuse the agent.

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. There is no mention of prerequisites (e.g., account must be linked) or when not to use it.

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

update_categoryC

Update an existing Lunch Money category.

ParametersJSON Schema
NameRequiredDescriptionDefault
category_idYes
nameNo
descriptionNo
is_incomeNo
exclude_from_budgetNo
exclude_from_totalsNo
archivedNo
group_idNo

TDQS

C2.4/5.0
Behavior2/5

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

No annotations provided, so the description carries full burden. It only says 'update' without disclosing return behavior, idempotency, 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.

Conciseness3/5

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

The description is a single concise sentence, but it is too brief and lacks any structuring (e.g., sections, bullet points).

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?

Given 8 parameters and no output schema, the description is severely incomplete. It fails to explain what the tool returns or any side effects.

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?

Schema description coverage is 0%, and the description adds no meaning to any of the 8 parameters. Parameters are completely undocumented.

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 verb 'update' and the resource 'category', distinguishing it from create_category and get_categories. However, it lacks specifics on which fields can be updated, but the purpose is unambiguous.

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 create_category. No conditions or prerequisites are mentioned.

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

update_transactionC

Update a Lunch Money transaction or split it into multiple child transactions.

ParametersJSON Schema
NameRequiredDescriptionDefault
transaction_idYes
transactionNo
splitNo
debit_as_negativeNo
skip_balance_updateNo

TDQS

C2.6/5.0
Behavior2/5

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

With no annotations, the description carries full burden but does not disclose whether updates are partial or full, what happens to existing data, balance implications, or the behavior of splitting. This is a significant gap 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.

Conciseness3/5

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

The description is a single sentence, which is concise but lacks structure to cover both operations (update and split). It is adequately short but sacrifices necessary detail.

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?

Given the complex input schema and no output schema, the description is severely incomplete. It does not explain return values, error handling, or behavioral details essential for effective use.

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?

Schema description coverage is 0%, and the description provides no explanation of parameters. The complex nested objects 'transaction' and 'split' are completely undocumented, leaving the agent without guidance on how to structure the input.

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 clearly states the action ('Update') and the resource ('a Lunch Money transaction'), and includes the special capability ('split it into multiple child transactions'). This differentiates it from siblings like create_transaction and get_transactions effectively.

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 provided on when to use this tool versus alternatives, nor when splitting is appropriate. There are no prerequisites or contextual conditions mentioned, leaving the agent to infer usage.

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

upsert_budgetC

Create or update a Lunch Money budget entry for a category and month.

ParametersJSON Schema
NameRequiredDescriptionDefault
start_dateYes
category_idYes
amountYes
currencyNo

TDQS

C2.8/5.0
Behavior2/5

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

With no annotations, the description carries the full burden. It only states 'Create or update', implying a write operation, but provides no details on side effects (e.g., overwriting existing budgets), return values, or required permissions. Behavioral traits are severely under-disclosed.

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 that immediately conveys the core purpose. It is front-loaded with the action and resource. However, it lacks any structure (e.g., sections) that could improve scannability for an AI agent.

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 no output schema, the description should at least hint at return format or behavior. It mentions 'budget entry for a category and month' but doesn't confirm that start_date should be the first day of the month or that category_id comes from get_categories. The presence of sibling tools like get_budgets for reading is not referenced. Completeness is low.

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?

Schema description coverage is 0%, yet the description adds no parameter information. It fails to explain what start_date, category_id, amount, or currency represent or their constraints (e.g., start_date should be first of month). The description adds zero value beyond the raw schema.

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 clearly states the verb 'Create or update' and the resource 'Lunch Money budget entry', and specifies the context 'for a category and month'. This distinguishes it from sibling tools like create_category or get_budgets, which involve different resources or actions.

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 provided on when to use this tool versus alternatives or when not to use it. For example, it doesn't clarify that the upsert replaces existing budgets for the same category and month, or that get_budgets should be used for reading. The description lacks any comparative context.

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. 15 tool updatesv1.0.0
    • First observedcreate_asset
    • First observedcreate_category
    • First observedcreate_transaction
    • First observedget_assets
    • First observedget_budgets
    • First observedget_categories
    • First observedget_plaid_accounts
    • First observedget_recurring_items
    • First observedget_tags
    • First observedget_transactions
    • First observedget_user
    • First observedtrigger_plaid_fetch
    • First observedupdate_category
    • First observedupdate_transaction
    • First observedupsert_budget

TDQS

B3.2/5.0

Scored across 15 tools

Disambiguation5/5

Each tool targets a distinct resource or action, with clear separation between asset, category, transaction, budget, account, recurring item, tag, and user operations. No overlapping functionality.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern (e.g., create_asset, get_transactions, update_category), using the same set of verbs (create, get, update, upsert, trigger) throughout.

Tool Count5/5

With 15 tools, the server covers the core aspects of personal finance management without being overloaded or underdeveloped. Each tool has a clear purpose.

Completeness2/5

The server provides create, read, and update operations for several resources, but lacks delete operations for all resources and missing update for assets and recurring items. Tags only have a get operation, leaving significant gaps in the lifecycle.

Maintenance

ActivityInactive
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    D
    maintenance
    Enables 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.
    -
  • A
    license
    A
    quality
    C
    maintenance
    Enables AI assistants to interact with the Pocketsmith personal finance API to manage accounts, budgets, and transactions through natural language. It supports comprehensive financial tasks including spending analysis, category management, and tracking recurring bills.
    23
    3
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    Enables managing personal finances through the Lunch Money API, including transactions, categories, budgets, and accounts via natural language commands.
    14
    10 npm
    3
    MIT