Aurify MCP Gateway
OfficialClick 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., "@Aurify MCP Gatewaylist my transactions from last month"
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.
Aurify MCP Gateway
An MCP server that lets an AI agent (Hermes, Claude, any MCP client) do anything a user can do in the Aurify web app.
What it is, and what it deliberately is not
It is an adapter, not a microservice. It owns no database, no aggregate, no
events, and no migrations. Every tool is a translation of an MCP call into a
request against refina-web-bff — the same REST surface the web frontend uses —
so there is exactly one implementation of every business rule, and it lives in
the domain services.
Hermes ──MCP (Streamable HTTP)──► aurify-mcp ──REST──► refina-web-bff ──gRPC──► wallet / transaction / …
Bearer aur_pat_… │ Bearer <5-min JWT>
└──► refina-auth (PAT → JWT exchange)It is intentionally not folded into the BFF: the BFF is the hot path for the browser, tuned with a Redis read cache and a rate limiter for that traffic, whereas this needs long-lived protocol sessions, tool schema discovery, scope enforcement, and an audit trail. Different lifecycle, different blast radius.
Related MCP server: Lunch Money MCP Server
Authentication
The agent presents an Aurify personal access token; the gateway exchanges it for a five-minute JWT and calls the BFF with that.
The exchanged JWT carries exactly the claims the BFF already expects, so no downstream service needed any change to support agents. The PAT is the durable credential and can be revoked at any time; the access token it yields is too short-lived to be worth stealing.
Scopes are enforced here, before any network call. The BFF still only checks the signature, exactly as it does for the browser.
Getting a token
# 1. Log in to Aurify and grab your JWT, then mint a PAT with only the scopes
# the agent actually needs.
curl -X POST http://localhost:8080/auth/pat \
-H "Authorization: Bearer <your login JWT>" \
-H "Content-Type: application/json" \
-d '{"name":"hermes","scopes":["wallet:read","transaction:read","transaction:write"]}'
# 2. Copy the `token` from the response — it is shown once and never again.
# 3. Revoke it whenever you like:
curl -X DELETE http://localhost:8080/auth/pat/<id> -H "Authorization: Bearer <JWT>"Available scopes: wallet:read, wallet:write, transaction:read,
transaction:write, budget:read, budget:write, investment:read,
investment:write, analytics:read, profile:read, profile:write.
Tools
28 tools by default. Reads are unrestricted; writes are annotated
readOnlyHint: false so the client prompts for confirmation.
Group | Read | Write |
Wallets |
|
|
Transactions |
|
|
Budgets |
|
|
Analytics |
| — |
Investments |
|
|
Profile |
|
|
System | — |
|
delete_wallet, delete_transaction, delete_budget and sell_investment are
not registered at all unless MCP_ALLOW_DELETE=true. Filtering rather than
rejecting means an agent never even sees them advertised.
Two conveniences are built in, because the web UI solves them in the frontend:
create_fund_transferfills in the reserved Cash In / Cash Out category ids itself, so they are absent from the tool schema.Tool descriptions explain the credit-line balance convention, so an agent does not mistake available credit for money owned.
Credit cards
A wallet whose wallet_type_nature is liability is a credit line. Its
balance is the credit still available: spending lowers it, and paying the
bill — a fund transfer into the wallet — restores it. Available credit is never
part of net worth. The tool descriptions state this so the model does not have
to infer it.
Running
npm install
cp .env.example .env # point BFF_BASE_URL / AUTH_BASE_URL at your services
npm run build
npm start # POST /mcp, GET /healthnpm test # unit tests
npm run lint # typecheckConfiguration
Variable | Default | Purpose |
|
| Listen port |
| (required) | refina-web-bff base URL |
| (required) | refina-auth base URL, for PAT exchange |
|
| Register destructive tools |
|
| Upstream request timeout |
No JWT signing secret is needed: the gateway never mints tokens, it only asks the auth service for them.
Wiring up Hermes
Add to ~/.hermes/config.yaml and run /reload-mcp:
mcp_servers:
aurify:
url: http://127.0.0.1:8090/mcp
headers:
Authorization: Bearer aur_pat_xxxxxxxx
enabled: true
tools:
include: [list_*, get_*, create_transaction, create_fund_transfer,
update_transaction, create_budget, update_budget, refresh_cache]
resources: false
prompts: falseVerify with hermes mcp test aurify.
Use tools.include (an allowlist) rather than exclude — this is financial
data, and an allowlist fails closed when new tools are added.
Operational notes
Stateless. Each request builds its own server and transport, both torn down when the response ends. One caller's token can never leak into another's session, and the process can be restarted or scaled freely.
Session cache. Exchanged JWTs are cached per token until 30s before expiry, and concurrent misses collapse into one exchange. In practice the first tool call in a turn costs a round trip to auth and the rest do not.
Audit log. One JSON line per tool call on stdout, recording the tool, scope, outcome and duration. Argument keys are logged, never values — enough to audit without copying the user's financial data into the logs.
Bind to localhost. Hermes runs as a host process, so publishing
127.0.0.1:8090is sufficient. This gateway should not be exposed publicly.Shared rate limiter. The BFF's Redis rate limiter is shared with browser traffic, and its read cache can serve stale figures right after a write — hence the
refresh_cachetool.
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.
Related MCP Servers
- AlicenseBqualityAmaintenanceAn MCP server implementation that provides programmatic access to personal finance data through LunchMoney's API, enabling AI assistants to manage transactions, budgets, categories, and assets.Last updated5956688MIT
- AlicenseBqualityCmaintenanceAn MCP server providing full integration with the Lunch Money API to manage financial data including transactions, budgets, assets, and categories. It enables AI assistants to perform CRUD operations on financial records through a standardized HTTP interface.Last updated26MIT
- Alicense-qualityCmaintenanceAn MCP server that connects AI assistants to YNAB budgets, enabling natural language queries about finances backed by full API coverage and built-in YNAB methodology knowledge.Last updated1MIT
- AlicenseAqualityBmaintenanceAn MCP server for Valta that exposes financial governance tools for AI agents, including spend authorization and audit trail via MCP-compatible clients.Last updated616591MIT
Related MCP Connectors
MCP server for Argo RPG Platform — connects AI assistants to campaign data via OAuth2
MCP server exposing the Backtest360 engine API as tools for AI agents.
MCP server for Gainium — manage trading bots, deals, and balances via AI assistants
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/Aurify-Org/Aurify-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server