mf-dashboard-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mf-dashboard-mcpShow my spending by category this month, starting by listing finance groups."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mf-dashboard-mcp
hiroppy/mf-dashboard のローカルSQLiteデータを、MCP clientから安全に参照するためのread-only MCP serverです。
Money Forwardや1Passwordの認証情報を渡さず、明細・口座・保有資産などの家計生データだけをstdio経由で問い合わせられます。Hermes Agentで利用できますが、標準MCPに対応するclientであれば同じserverを利用できます。
特徴
SQLite databaseをnetworkへ公開しないstdio transport
選択したmf-dashboard groupだけをin-memory databaseへ複製してquery
元databaseはSQLiteの
mode=roでattachINSERT、UPDATE、DELETE、ATTACH、PRAGMAなどを拒否Money Forward由来の
mf_idを常にNULLへ匿名化最大200行、64 KiB、32列、SQL 5,000文字、実行1秒の制限
query processへMoney Forward、1Password、Cloudflareなどの環境変数を継承しない
transactions.first_seen_atの有無を自動判定し、未対応databaseではNULLとして公開
Related MCP server: sql-explorer-mcp
必要環境
LinuxまたはmacOS
Node.js 24.13.0以上
pnpm 11.24.0以上
setup済みのhiroppy/mf-dashboard
mf-dashboardが生成した
data/moneyforward.db
元databaseをSQLite read-only URIでattachするため、Node.js 24.13.0未満では動作しません。
Install
ghqでcloneしてbuildします。
ghq get https://github.com/staticWagomU/mf-dashboard-mcp.git
cd "$(ghq root)/github.com/staticWagomU/mf-dashboard-mcp"
pnpm install --frozen-lockfile
pnpm buildHermes Agentへ登録
次の例では、MCP processを空の環境変数から起動します。MF_DASHBOARD_DBは自分のmf-dashboard databaseの絶対pathへ変更してください。
MF_DASHBOARD_MCP_ROOT="$(ghq root)/github.com/staticWagomU/mf-dashboard-mcp"
MF_DASHBOARD_DB="$(ghq root)/github.com/hiroppy/mf-dashboard/data/moneyforward.db"
MF_DASHBOARD_NODE="$(command -v node)"
MF_DASHBOARD_NODE_PATH="$(dirname "$MF_DASHBOARD_NODE"):/usr/bin:/bin"
hermes mcp add mf-dashboard \
--command /usr/bin/env \
--args \
-i \
"PATH=$MF_DASHBOARD_NODE_PATH" \
NODE_ENV=production \
TZ=Asia/Tokyo \
"$MF_DASHBOARD_NODE" \
"$MF_DASHBOARD_MCP_ROOT/dist/index.js" \
--database \
"$MF_DASHBOARD_DB"接続を確認します。
hermes mcp test mf-dashboardtoolが3つ表示されれば接続完了です。
他のMCP clientへ登録
clientの設定形式に合わせて、次と同等のstdio commandを登録してください。
{
"mcpServers": {
"mf-dashboard": {
"command": "/usr/bin/env",
"args": [
"-i",
"PATH=/absolute/path/to/node/bin:/usr/bin:/bin",
"NODE_ENV=production",
"TZ=Asia/Tokyo",
"/absolute/path/to/node",
"/absolute/path/to/mf-dashboard-mcp/dist/index.js",
"--database",
"/absolute/path/to/mf-dashboard/data/moneyforward.db"
]
}
}
}Tools
Tool | 内容 |
| 参照可能なgroupのIDと名前を返す |
| query可能なtable、column、家計集計規則を返す |
| 指定groupに限定したread-only SQLを実行し、生データを返す |
Hermesには次のように依頼できます。
mf-dashboard MCPを使って、今月の支出をカテゴリ別に集計して。
最初にlist_finance_groupsとget_finance_schemaを確認してからquery_financeを使って。新しく届いた明細を調べる
first_seen_at対応済みのmf-dashboard databaseでは、前回crawler取得時刻より後に初めて観測された明細を抽出できます。
SELECT date, description, amount, category, first_seen_at
FROM transactions
WHERE first_seen_at IS NOT NULL
AND first_seen_at > '2026-08-30T21:30:00.000Z'
ORDER BY first_seen_at DESC;first_seen_at migration前から存在する明細と、未対応のmf-dashboard databaseではfirst_seen_atがNULLになります。過去の初回取得時刻を後から復元することはできません。
Security
このserverは認証情報をMCP toolとして公開せず、query対象をgroup-scoped in-memory databaseへ限定します。元databaseもSQLite read-only URIで開きます。
一方、明細の摘要、口座名、金額などは意図的に生データとして返します。MCP clientが利用するmodel providerへ送信され得るため、providerのデータ取扱方針を確認してください。詳細と脆弱性の報告方法はSECURITY.mdを参照してください。
Development
pnpm install
pnpm check
pnpm buildtestは一時SQLite databaseだけを利用し、実際のMoney Forwardデータを必要としません。
License and attribution
MIT Licenseです。query sandboxとmf-dashboard schemaの取り扱いは、MIT Licenseで公開されているhiroppy/mf-dashboardの実装を基にしています。原著作権表示はLICENSEとNOTICEに記載しています。
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Query your org's data in natural language — read-only MCP access to SQL, NoSQL, files & warehouses.
Query, join, profile, clean and convert CSV/JSON/Parquet with server-side DuckDB over MCP.
Read-only MCP server for turva.dev, an agent-readiness audit and advisory service.
Read-only MCP server for The Quiet Protocol's engines, benchmarks, proof, and business data.
Related MCP Servers
- FlicenseNot gradedqualityBmaintenanceA secure, read-only MCP server that empowers Claude Desktop and AI agents to safely query and inspect local SQLite databases.
- AlicenseNot gradedqualityFmaintenanceRead-only MCP server for SQL databases (SQL Server, Postgres, SQLite) with multi-server support and three-layer safety using AST validation and linting.MIT
- FlicenseNot gradedqualityFmaintenanceProvides read-only SQL query access to Postgres and DuckDB databases via MCP tools, with extensive security hardening for public endpoints.1
- AlicenseNot gradedqualityBmaintenanceEnables read-only access to SQLite databases via MCP, with tools for browsing tables, schemas, and executing SELECT queries securely.MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/staticWagomU/mf-dashboard-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server