
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’s my net worth?
- Summarize my recent transactions.
- What changed recently?
- What recurring charges do I have?
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 published/documented MCP surface is the following four-tool core:
| Tool | Description |
|---|---|
get_accounts | List connected accounts with current balances |
get_transactions | Page through transactions with an opaque cursor |
get_financial_state | Return the current typed financial state bundle |
verify_key | Validate the configured API key |
YYYY-MM-DD. Incremental sync timestamps use ISO 8601 datetimes.get_accountsInput:
{}
Returns:
{
"accounts": [
{
"name": "Primary Checking",
"type": "depository",
"subtype": "checking",
"balance": 2450.12,
"institution": "Chase",
"mask": "1234"
}
]
}
get_transactionsInput:
{
"limit": 100,
"cursor": "opaque-cursor-from-a-prior-page",
"last_knowledge": "2026-03-11T00:00:00.000Z",
"search": "coffee"
}
Returns:
{
"generated_at": "2026-03-11T12:00:00.000Z",
"next_knowledge": "2026-03-11T12:00:00.000Z",
"txns": [
{
"id": "txn_123",
"date": "2026-01-15",
"amount": 12.34,
"merchant": "Coffee Shop",
"description": "COFFEE SHOP",
"category": "FOOD_AND_DRINK",
"detailed_category": "FOOD_AND_DRINK_COFFEE"
}
],
"pagination": {
"limit": 100,
"next_cursor": "opaque-next-cursor",
"has_more": true
}
}
Cursor model:
cursor on the first call.limit and any filters such as search fixed while following a cursor chain.pagination.next_cursor is non-null, pass it unchanged to fetch the next page.next_cursor is null.cursor with last_knowledge.get_financial_stateInput:
{}
Returns:
{
"generated_at": "2026-03-11T12:00:00.000Z",
"snapshots": [
{
"date": "2026-03-11",
"net_worth": 125430.55,
"total_assets": 168210.77,
"total_liabilities": 42780.22
}
],
"recurring": [
{
"merchant": "Netflix",
"amount": 15.49,
"frequency": "MONTHLY",
"next_date": "2026-03-18",
"type": "subscription",
"active": true
}
],
"budgets": [
{
"name": "Dining Out",
"amount": 400,
"spent": 182.55,
"remaining": 217.45,
"percent_used": 45.64,
"period": "monthly",
"status": "on_track"
}
],
"goals": [
{
"name": "Emergency Fund",
"target": 10000,
"current": 4200,
"progress_percent": 42,
"target_date": null,
"status": "active",
"category": "safety",
"monthly_contribution_needed": 400
}
],
"health": {
"score": 78,
"label": "Good",
"data_completeness": 94,
"pillars": {
"spend": 20,
"save": 23,
"borrow": 15,
"build": 20
},
"message": null
},
"liabilities": [
{
"account_id": "acc_loan_1",
"type": "student",
"balance": 12450.22,
"apr_percentage": 5.2,
"minimum_payment": 145,
"next_payment_due_date": "2026-03-22",
"is_overdue": false
}
],
"holdings": [
{
"account_id": "acc_inv_1",
"security_name": "Vanguard Total Stock Market ETF",
"symbol": "VTI",
"type": "etf",
"quantity": 12.5,
"value": 3541.25,
"cost_basis": 3010
}
],
"category_spending": [
{
"category": "FOOD_AND_DRINK",
"amount": 182.55
}
]
}
If Warm does not have enough state data yet, nullable fields remain null.
verify_keyInput:
{}
Returns:
{
"valid": true,
"status": "ok"
}
npm install
npm run build
MIT
FAQs
Warm local stdio MCP server
The npm package @warmio/mcp receives a total of 81 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.