Mmcp.market

Financier docs MCP server

by financier.sh·sh.financier/financier-docs·v1.0.0

Search and read Financier's developer documentation. No credentials needed.

A88/100grade A
What users say
No reviews yet
Be the first
Safety scan
A88/100

full report

Adoption
Growing

0 stars

Reviews

Write one

Nobody has reviewed Financier docs yet.

If you have run it, two minutes of your experience saves the next person an afternoon.

Financier docs tools (2)

write = sends, deletes, buys or posts
  • read_docFree

    Read one documentation page as markdown. Paths: /, /developers, /about, /contact, /privacy, /auth.

  • search_docsFree

    Find documentation pages and sections matching a query. Returns paths to pass to read_doc.

Public scan report

scanner v0.1.9 · 2026-09-23 · same rubric, same numbers if you re-run it

no findings
  • Code scanremote-only server, no package to scann/a
  • Live reliabilityremote reachable in 346ms20/20
  • Tool poisoning2 tool descriptions checked15/15
  • Auth qualityopen endpoint, read-only tools10/15
  • Maintenancelast push 0 days ago15/15
  • Maintainer identitynamespace and repository owner differ; website matches verified namespace6/10
Overall 88/100. Components that don't apply are left out of the denominator. Any critical finding is an F.RubricAppeal a findingJSON

What the publisher says

From the Financier docs repository's README, as published. We do not edit it. Read it on GitHub

Financier

Official agent and developer tooling for Financier: 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.

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

MCP

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

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

SDK

npm install @financier-sh/sdk
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

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.

CLI

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

Nothing above is checked by us. What we check is on the safety report.

Install directly

claude mcp add --transport http financier-docs https://financier.sh/mcp/docs
Add to Cursor

Financier docs: common questions

Is Financier docs MCP server safe?
Yes, by our scan: it is graded A (88/100). Read the Financier docs safety report
How do I install Financier docs?
It runs remotely at financier.sh. Add it to Claude Code, Claude Desktop or Cursor with the snippets above, or call it through the mcp.market gateway without installing anything.
Does Financier docs need an API key?
Not as far as the registry entry and our scan can tell: no credentials are declared or required.
Is Financier docs maintained?
The last commit was in the last day (2026-09-22). The latest release is v1.0.0.
Is Financier docs up?
100% of our last 1 checks got an answer. We check remote servers about four times a day.
What can I use instead of Financier docs?
Servers from other publishers that do the same job: Docs MCP server, FlutterSDK Docs MCP server and classifier.dev docs MCP server. Compare all Financier docs alternatives.

Alternatives to Financier docs

Same job from other publishers: the closest match first, then the best rated.

All Financier docs alternatives →
  • Docs
    Search and read Empryo's documentation. Read-only, no auth, no local access.
    A
  • FlutterSDK Docs
    Search Wind UI, Magic, Dusk, Telescope and Artisan documentation. Hosted, public, no auth.
    A
  • classifier.dev docs
    classifier.dev documentation as tools: list, read and search the reference, benchmark and guides.
    A
  • Smarter Weather Developer Onboarding
    Agent-first onboarding to Smarter Weather: plans, docs, signup, API keys, MCP config, billing.
    A
  • INITE Club
    Ask the agent of someone whose calendar you could not get. No credential needed to try.
    A

More from financier.sh