Skip to main content
ClaudeWave

Official agent and developer tooling for Financier: TypeScript SDK, CLI, MCP registry entries, agent skill and plugin.

MCP ServersOfficial Registry0 stars0 forksTypeScriptMITUpdated today
ClaudeWave Trust Score
95/100
Verified
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Last scanned: 9/23/2026
Install in Claude Code / Claude Desktop
Method: Manual
Claude Code CLI
git clone https://github.com/financier-sh/financier
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "financier": {
      "command": "node",
      "args": ["/path/to/financier/dist/index.js"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Clone https://github.com/financier-sh/financier and follow its README for install instructions.
Use cases

MCP Servers overview

# Financier

Official agent and developer tooling for [Financier](https://financier.sh): a personal finance plan built from a person's own bank data. Financier is API-first. Everything a person can do in the app, an agent can do over MCP, the REST API, this SDK or this CLI.

| | |
| --- | --- |
| MCP server | `https://financier.sh/mcp` (Streamable HTTP; OAuth 2.1 or `x-api-key`) |
| Docs MCP server | `https://financier.sh/mcp/docs` (no credentials) |
| REST API | `https://financier.sh/api/v1`, [OpenAPI](https://financier.sh/api/openapi.json), [reference](https://financier.sh/api/docs) |
| TypeScript SDK | [`@financier-sh/sdk`](packages/sdk) |
| CLI | [`@financier-sh/cli`](packages/cli) (`financier`) |
| Agent skill | [`skills/financier/SKILL.md`](skills/financier/SKILL.md) |
| Agent plugin | [`plugin.json`](plugin.json) + [`mcp.json`](mcp.json) |
| MCP registry | `sh.financier/financier`, `sh.financier/financier-docs` |
| A2A 1.0 | [agent card](https://financier.sh/.well-known/agent-card.json), JSON-RPC at `https://financier.sh/a2a` |
| Ask the docs (NLWeb) | `POST https://financier.sh/ask` |
| Agent identity, no account | `POST https://financier.sh/agent/identity` (sandbox-only until a person claims it) |
| Webhooks | Standard Webhooks + Web Bot Auth ([keys](https://financier.sh/.well-known/http-message-signatures-directory)) |
| Agent index | [llms.txt](https://financier.sh/llms.txt), [auth.md](https://financier.sh/auth.md) |

Accounts are invite-only for now. The sandbox bank (provider `demo`) gives any account a synthetic household to try everything on.

## MCP

```json
{
  "mcpServers": {
    "financier": { "type": "http", "url": "https://financier.sh/mcp" }
  }
}
```

Claude Code: `claude mcp add --transport http financier https://financier.sh/mcp`

## SDK

```sh
npm install @financier-sh/sdk
```

```ts
import { createFinancier } from "@financier-sh/sdk";

const financier = createFinancier({ apiKey: process.env.FINANCIER_API_KEY });
await financier.connections.linkSandbox();
for await (const event of financier.plan.buildStream()) console.log(event.stage);
const view = await financier.plan.view();
console.log(view?.stages[view.current]?.name, view?.plan.monthly.surplus);
```

### Webhooks

```ts
import { verifyWebhook } from "@financier-sh/sdk";

// In your handler: the raw body, the request headers, and the secret from webhooks.create.
if (!(await verifyWebhook(rawBody, request.headers, process.env.FINANCIER_WEBHOOK_SECRET!)))
  return new Response("bad signature", { status: 401 });
```

Events: `plan.built`, `recurring.detected`, `bank.reconnect_required`, `webhook.test`. Every delivery is also signed with Web Bot Auth, verifiable against financier.sh's key directory without a shared secret.

## Agents without an account

An agent can start before any person is involved: `POST /agent/identity {"type":"anonymous"}` returns a sandbox-only identity and a claim token. When a person wants the agent to work on their real account, the agent starts a claim with their email, shows them the code, and the person approves it at `financier.sh/claim`. The full flow, with requests, is in [auth.md](https://financier.sh/auth.md).

## CLI

```sh
npm install -g @financier-sh/cli
financier login          # paste an API key from Settings, Developer
financier sandbox        # link the synthetic household
financier build          # sync, categorise, build the plan
financier plan           # stage, monthly figures, actions
financier plan --json    # the same, for scripts and agents
financier spending --from 2026-08-01 --by merchant
financier webhooks add https://example.com/hooks/financier --events plan.built
```

## This repository

The Financier app itself is private. This repository holds the public surface: the SDK, the CLI, the agent skill, the plugin manifest and the MCP registry entries. The SDK's types are generated from the live OpenAPI document (`bun run generate`).

## License

MIT
agentsbudgetingclimcpopenapipersonal-financesdk

What people ask about financier

What is financier-sh/financier?

+

financier-sh/financier is mcp servers for the Claude AI ecosystem. Official agent and developer tooling for Financier: TypeScript SDK, CLI, MCP registry entries, agent skill and plugin. It has 0 GitHub stars and its last recorded update is dated 2026-09-22.

How do I install financier?

+

You can install financier by cloning the repository (https://github.com/financier-sh/financier) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is financier-sh/financier safe to use?

+

Our security agent has analyzed financier-sh/financier and assigned a Trust Score of 95/100 (tier: Verified). See the full breakdown of passed checks and flags on this page.

Who maintains financier-sh/financier?

+

financier-sh/financier is maintained by financier-sh. The last recorded GitHub activity is dated 2026-09-22, with 0 open issues.

Are there alternatives to financier?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy financier to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: financier-sh/financier
[![Featured on ClaudeWave](https://claudewave.com/api/badge/financier-sh-financier)](https://claudewave.com/repo/financier-sh-financier)
<a href="https://claudewave.com/repo/financier-sh-financier"><img src="https://claudewave.com/api/badge/financier-sh-financier" alt="Featured on ClaudeWave: financier-sh/financier" width="320" height="64" /></a>

More MCP Servers

financier alternatives