
Company News
Free Business Plan Upgrades for Open Source Maintainers
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.
@warmio/mcp
Advanced tools
Warmio is the one-command CLI and read-only MCP server for Warm financial data.
npx -y @warmio/mcp@latest
The installer detects supported MCP clients, prompts for your Warm API key, validates it, and
writes the local stdio MCP config automatically. The key is stored once in your local Warm
profile instead of being duplicated into every MCP client config.
Use this when a client asks you to paste an MCP JSON config:
{
"mcpServers": {
"warm": {
"command": "npx",
"args": ["-y", "@warmio/mcp@latest", "mcp"]
}
}
}
On Windows, prefer:
{
"mcpServers": {
"warm": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@warmio/mcp@latest", "mcp"]
}
}
}
Optional auth overrides:
WARM_API_KEYWARM_API_KEY_FILEI want to connect Warm to this AI app using MCP.
Use this MCP server config:
{
"mcpServers": {
"warm": {
"command": "npx",
"args": ["-y", "@warmio/mcp@latest", "mcp"]
}
}
}
If this app supports MCP configuration, add a server named "warm" with that command.
Do not ask me to paste my Warm API key into this chat. Help me store it locally using Warm's setup
flow, then test the connection by calling Warm's verify_key tool.
After setup, I should be able to ask:
- What is my net worth?
- Summarize my recent transactions.
- What changed recently?
- What recurring charges do I have?
npx -y @warmio/mcp@latest context get
npx -y @warmio/mcp@latest context meta
npx -y @warmio/mcp@latest transactions get --month 2026-07
npx -y @warmio/mcp@latest transactions get --latest
All CLI read commands print JSON.
If your MCP client supports Streamable HTTP, you can run:
npx -y @warmio/mcp@latest http --host 127.0.0.1 --port 3000 --path /mcp
Relevant optional environment variables:
WARM_MCP_HTTP_HOSTWARM_MCP_HTTP_PORTWARM_MCP_HTTP_PATHWARM_MCP_ALLOWED_HOSTSWarm's v6 MCP surface is exactly three tools:
| Tool | Description |
|---|---|
get_financial_context | Return compact FinancialContext JSON |
get_transactions | Return one month page or the fixed latest window |
verify_key | Validate the configured API key |
get_financial_context takes {} and returns compact context JSON without transaction items.get_transactions takes either { "month": "YYYY-MM" }, { "latest": true }, or {}.get_transactions call with no arguments defaults to { "latest": true }.month must use YYYY-MM format, for example 2026-07.latest is a fixed 10-day window anchored to the current artifact; the caller cannot configure the window.month and latest are mutually exclusive.count: 0 and items: [].get_financial_contextInput:
{}
Returns compact FinancialContext:
{
"version": "v1",
"updated_at": "2026-07-06T11:58:41.000Z",
"currency": "USD",
"status": {
"position": {
"date": "2026-07-06",
"net_worth": 84500,
"cash": 18200,
"debt": 6400,
"investments": 72700,
"other_assets": 0,
"total_assets": 90900
},
"accounts": []
},
"transactions": {
"total": 2,
"months": [{ "month": "2026-07", "count": 2 }]
},
"recurring": [],
"budgets": [],
"goals": [],
"snapshots": [],
"liabilities": [],
"holdings": [],
"health": null
}
get_transactionsMonth input:
{ "month": "2026-07" }
Month response:
{
"month": "2026-07",
"start_date": "2026-07-01",
"end_date": "2026-07-31",
"count": 1,
"items": [
{
"id": "txn_1",
"account_id": "acct_1",
"date": "2026-07-05",
"amount": 42.18,
"merchant": "Whole Foods",
"name": "WHOLE FOODS",
"category": "FOOD_AND_DRINK",
"subcategory": "FOOD_AND_DRINK_GROCERIES",
"pending": false,
"currency": "USD"
}
]
}
Latest input:
{ "latest": true }
Latest response:
{
"since": "2026-06-26",
"window_days": 10,
"count": 1,
"items": []
}
verify_keyInput:
{}
Returns:
{
"valid": true,
"status": "ok"
}
v6 is a clean break with no backwards compatibility and no alias window.
get_accounts is removed. Use get_financial_context.status.accounts.get_financial_state is removed. Use get_financial_context.get_transactions no longer supports cursor, search, or last_knowledge.txns transaction array is gone. Transaction responses use items.subcategory, used_percent,
status, due_date, and other_assets.npm install
npm run build
npm test
MIT
FAQs
Warm local stdio MCP server
The npm package @warmio/mcp receives a total of 74 weekly downloads. As such, @warmio/mcp popularity was classified as not popular.
We found that @warmio/mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.