AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Ainumbers

mcp-postoaklabs-ainumbers · by PostOakLabs

Deterministic fintech compliance tools + the OpenChainGraph verifiable-artifact standard

No reviews yet
0 installs
5 views
0.0% view→install

Install

$ agentstack add mcp-postoaklabs-ainumbers

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-postoaklabs-ainumbers)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
15d ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Ainumbers? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

AINumbers.co: Fintech Intelligence Suite

[](https://github.com/PostOakLabs/ainumbers/actions/workflows/deploy-to-dreamhost.yml) [](https://creativecommons.org/licenses/by/4.0/)

Fintech compliance calculations get done by hand, in spreadsheets, or inside a vendor black box with no way to check the work. AINumbers.co gives payments engineers, ops teams, treasury analysts, and compliance professionals 500+ deterministic browser tools plus ChainGraph: an open standard where every calculation emits a reproducible hash, so any output can be independently re-verified instead of trusted on faith.

Built by Post Oak Labs. Live Suite · MCP Server · ChainGraph Standard

Try it

  • Run a tool: open any tool page directly. Single self-contained HTML file, no install, no account.
  • Run a chain: Workbench, pick a chain from the catalog, run it, verify the resulting hash.
  • Connect an agent: point any MCP host at https://mcp.ainumbers.co/mcp. Docs at ainumbers.co/mcp.html.

Counts drift as tools ship. Never trust a hardcoded number here or anywhere else in this repo. Live figures: node scripts/counts.mjs (site) and mcp-apps-poc/data/counts.json (MCP server).

What this is

A privacy-first, deterministic tool suite spanning 32 fintech categories: AML/KYC, cross-border payments, DLT/tokenization, treasury, embedded finance, e-invoicing, DORA/PSD3/MiCA compliance, and more. Plus ChainGraph, an open standard for verifiable, hash-chained decision artifacts. Every ChainGraph node emits a reproducible execution_hash. Chains cite the hashes of the nodes they consume, so any agent can independently re-verify a multi-step decision. See chaingraph/standard/SPEC.md for the normative spec.

Two consumption surfaces:

  • Browser, direct. Every tool and ChainGraph node is a single self-contained .html page, zero network calls after load.
  • Agent, via MCP. The tool suite is also served to any MCP host (Claude, ChatGPT, Cursor, and others) by a separate Cloudflare Workers server. See [Model Context Protocol server](#model-context-protocol-server) below.

Repository structure

ainumbers/
CONTRACT.md         Build contract, SSOT for all contributors, read before any build
index.html          Homepage (tool grid, category filters, search)
tools/               Self-contained standalone tool pages (inline CSS/JS, no build step)
guides/              Category hub pages (*-hub.html)
chaingraph/          ChainGraph: standard/ (SPEC.md, JSON schema), kernels/, node + chain pages
ledger/              Local-only receipt ledger (IndexedDB carve-out, CONTRACT §A7)
manifests/           Per-tool MCP manifests (one JSON per tool)
mcp/                 Data files consumed by the MCP server (catalog.json, server.json).
                     Not the server itself; the live MCP server is a separate repo, see below.
scripts/             Build/CI gates. preflight.mjs runs every hard gate locally before push.
.github/workflows/   Deploy pipeline (preflight-equivalent gates, rsync, smoke test)
sitemap.xml / robots.txt / llms.txt

Model Context Protocol server

The live MCP server (https://mcp.ainumbers.co/mcp, streamable HTTP, no auth) lives in a separate repo, PostOakLabs/ainumbers-mcp-apps, deployed to Cloudflare Workers. That server vendors tool HTML, manifests, and ChainGraph kernels from this repo at build time (generate.mjs, run from the worker repo) and re-registers every time chaingraph.json or a manifest changes and gets re-vendored.

Every tool ships a manifest.json for MCP auto-discovery. mcp/catalog.json and suite-registry.json are the machine-readable bulk indices the worker repo's generate.mjs reads from.

Architecture

  • Single-file tools and nodes. Each lives in tools/ or chaingraph/ with fully inline CSS/JS. No build step, no dependencies, no CDNs.
  • Deterministic execution. Rule-based math, schema validation, static reference tables. Bit-for-bit reproducible outputs across runs.
  • ChainGraph as the sole orchestration surface. Multi-tool workflows are ChainGraph chains (chaingraph/chains/), not the deprecated Composer/Scenario Guide page types. See chaingraph/standard/SPEC.md §3 for the four conformance levels.
  • AINumbers Policy Mandate export. Policy, rule, mandate, and compliance tools export a structured Policy Mandate (JSON and Markdown), validated before download. This is AINumbers' own schema, not Google's AP2 payments protocol (CONTRACT §3.1).
  • Ledger. ledger/ is the one carve-out from the site's zero-client-storage rule (CONTRACT §A7): local-only IndexedDB receipt store, export/import, zero transmission except a user-initiated anchor call.

Deploy flow (CI-owned)

Branch, then PR. Run node scripts/preflight.mjs locally: every hard CI gate (JS syntax, hash integrity, SSOT conformance, count-drift, dead-link, copy-hallmarks, and more) runs the same way it does in CI, so green here means green there. Merging to main triggers GitHub Actions, which runs the same gates, rsyncs to the DreamHost production host, then runs an HTTP smoke test against the live domain. No manual SFTP or rsync, ever.

A committed pre-push hook (.githooks/pre-push) runs preflight.mjs automatically. Enable it once per clone with node scripts/setup-hooks.mjs.

Adding a tool

  1. Create tools/XX-{kebab-slug}.html, a single self-contained file per CONTRACT.md.
  2. Add manifests/XX-{kebab-slug}.manifest.json per CONTRACT.md §2.2.
  3. Add a card to index.html with the correct data-cat attribute and T-number.
  4. Run node scripts/preflight.mjs and fix anything red.
  5. Push. CI validates and deploys automatically.

Full workflow: CLAUDE.md in this directory, then CONTRACT.md for the full spec.

Contributing

  • Open an issue or PR on GitHub.
  • Follow deterministic, auditable logic standards per CONTRACT.md.
  • Include citation footnotes for all regulatory and financial claims.
  • Never introduce external dependencies, PII collection, or network calls after page load.
  • Policy Mandate export is required on all new policy, rule, mandate, or compliance tools.

Links

Post Oak Labs. CC BY 4.0.

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.