maxed-mcp
Verifies Stripe webhook HMAC signatures to ensure authenticity of incoming webhooks.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@maxed-mcpnormalize this bank statement CSV"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
maxed-mcp
One Model Context Protocol server that fronts the deterministic tools in the open-source accounting suite, so an AI agent can call them the same way it calls any other MCP tool.
Agents are good at judgement and bad at arithmetic, parsing, and signature checks. This server hands the deterministic, auditable work to the libraries built for it: parse a bank statement, classify a document, validate a workpaper against the open spec, do exact money math, and verify a webhook signature. Every tool returns structured JSON and a uniform error envelope. Nothing here is generative, and nothing is faked: when a backing tool is not installed, the tool says so and tells the agent how to install it, rather than inventing an answer.
This is the agentic front door to the suite. The parsers and validators live in their own repositories and stay the single source of truth for their behavior; maxed-mcp shells out to the ones that ship a CLI and parses their JSON, and computes the small pure primitives (money math, HMAC) in-process, mirroring the semantics of their canonical sibling libraries.
Tools
Tool | What it does | Backend |
| List every tool and whether its backend is installed on this host. | in-process |
| Parse CSV / OFX / QFX / MT940 / CAMT / QIF / text into normalized transaction JSON. | |
| Parse an OFX/QFX or CSV bank export into normalized transaction JSON. | ofx-normalizer |
| Classify accounting document text: | |
| Validate a document against a cpa-workpaper-spec JSON Schema. | spec validator |
| Split an amount across ratios or evenly, with no lost minor units. | money-rs semantics |
| Apply a rate (tax, tip, share) with explicit rounding. | money-rs semantics |
| Constant-time verify a Stripe / hex / base64 webhook HMAC signature. | webhook-hmac-verifier semantics |
money_* and verify_webhook_hmac are computed in-process and are always
available; they faithfully mirror the rules of the canonical Rust and Go
libraries so an agent gets the same answer either way. The four parser and
validator tools shell out to a sibling CLI; call list_capabilities first to
see which are installed.
Related MCP server: jPOS MCP Server
Install
pip install maxed-mcp
# Make the two Python-backed tools available out of the box:
pip install "maxed-mcp[suite]" # adds statement-normalizer + doc-classifier-kitOptional backends for the remaining shell-backed tools:
normalize_ofx: build the Go binary and put it onPATH(go install github.com/maxed-oss/ofx-normalizer/cmd/ofxnorm@latest).validate_workpaper: pointCPA_WORKPAPER_SPEC_DIRat acpa-workpaper-speccheckout (the directory containingvalidator/validate.py).
Run
maxed-mcp # start the server on stdio
python -m maxed_mcp # equivalentThe server speaks MCP over stdio, so it plugs into any MCP client. Register it with a client like this (the exact file differs per client):
{
"mcpServers": {
"maxed": {
"command": "maxed-mcp",
"env": {
"CPA_WORKPAPER_SPEC_DIR": "/path/to/cpa-workpaper-spec"
}
}
}
}Backend resolution
Each shell-backed tool resolves its command in this order:
an explicit environment variable (a full command line):
MAXED_MCP_STATEMENT_NORMALIZER,MAXED_MCP_DOC_CLASSIFIER,MAXED_MCP_OFXNORM,MAXED_MCP_CPA_WORKPAPER_VALIDATE;the tool's console-script (or
ofxnormbinary) onPATH;a fallback:
python -m ...for the Python tools, or a siblingcpa-workpaper-spec/checkout for the validator (CPA_WORKPAPER_SPEC_DIR).
If nothing resolves, the tool returns {"ok": false, "error": {"code": "tool_unavailable", ...}} with an install hint instead of failing opaquely.
Response shape
Every tool returns a JSON object. Success carries "ok": true plus tool
fields; failure carries "ok": false and an error object:
{ "ok": false, "error": { "code": "tool_unavailable", "message": "...", "detail": { "hint": "..." } } }See AGENT.md for the condensed machine interface,
llms.txt for the machine-readable tool reference, and
examples/agent_call_example.py for a full,
runnable in-process client that calls every tool.
Development
pip install -e ".[dev,suite]"
pytest -qThe test suite exercises the in-process tools directly and the shell-backed
tools against the installed Python siblings; tools whose backend is not present
assert the graceful tool_unavailable path.
License
Apache-2.0.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Maxed-OSS/maxed-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server