Official agent and developer tooling for Financier: TypeScript SDK, CLI, MCP registry entries, agent skill and plugin.
- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Topics declared
- ✓Documented (README)
git clone https://github.com/financier-sh/financier{
"mcpServers": {
"financier": {
"command": "node",
"args": ["/path/to/financier/dist/index.js"]
}
}
}Resumen de MCP Servers
# 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
Lo que la gente pregunta sobre financier
¿Qué es financier-sh/financier?
+
financier-sh/financier es mcp servers para el ecosistema de Claude AI. Official agent and developer tooling for Financier: TypeScript SDK, CLI, MCP registry entries, agent skill and plugin. Tiene 0 estrellas en GitHub y su última actualización registrada es del 2026-09-22.
¿Cómo se instala financier?
+
Puedes instalar financier clonando el repositorio (https://github.com/financier-sh/financier) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.
¿Es seguro usar financier-sh/financier?
+
Nuestro agente de seguridad ha analizado financier-sh/financier y le ha asignado un Trust Score de 95/100 (tier: Verified). Revisa el desglose completo de comprobaciones superadas y flags en esta página.
¿Quién mantiene financier-sh/financier?
+
financier-sh/financier es mantenido por financier-sh. La última actividad registrada en GitHub es del 2026-09-22, con 0 issues abiertos.
¿Hay alternativas a financier?
+
Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.
Despliega financier en tu cloud
Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.
¿Mantienes este repo? Añade un badge a tu README
Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.
[](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>Más MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl! Don't be shy, join here: https://discord.gg/EMgGbDceNQ and follow here for daily tips and tricks: https://x.com/Scrapling_dev
The fastest path to AI-powered full stack observability, even for lean teams.