@moncashconnect/mcp
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., "@@moncashconnect/mcpshow my current balance"
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.
@moncashconnect/mcp
An open source, local (stdio) MCP server that exposes MonCashConnect's read only payment tools to AI coding assistants: Cursor, Claude Code, Codex, and any other MCP compatible client.
It runs on your machine, reads your MonCashConnect API key from an environment variable, and talks only to api.moncashconnect.com. It never writes to your live account and never moves money.
Get a key
Open the MonCashConnect dashboard.
Go to Read-only / AI keys.
Create a key:
sk_ro_proj_...for live, read only access to your real account.sk_ro_test_...for a sandbox account, safe for trying things out and forcreate_test_payment.
A full power sk_proj_... key will be rejected. This package only accepts read-only keys.
Related MCP server: MonarchMoney MCP Server
Configure your AI tool
Paste this into your MCP client's config (Cursor, Claude Code, Codex, etc.), filling in your own key:
{
"mcpServers": {
"moncashconnect": {
"command": "npx",
"args": ["-y", "@moncashconnect/mcp"],
"env": { "MONCASHCONNECT_API_KEY": "sk_ro_test_your_key_here" }
}
}
}The package is published on npm, so npx -y @moncashconnect/mcp works out of the box with the config above. No manual install needed.
Local development / running from source
npm install
npm run buildThen point your MCP client's config at the built file instead of npx:
{
"mcpServers": {
"moncashconnect": {
"command": "node",
"args": ["/absolute/path/to/moncashconnect-mcp/dist/index.js"],
"env": { "MONCASHCONNECT_API_KEY": "sk_ro_test_your_key_here" }
}
}
}Tools
Tool | Description |
| Get one payment by its merchant reference: status, amount, and timestamps, with customer data masked. |
| List recent transactions, masked, with filters for status, type, and date range, paginated. |
| Get the merchant's current available balance in HTG. |
| Explain why a payment is in its current state, with a sanitized diagnosis and suggestion. |
| Create a sandbox test payment and return a payment URL and reference. Requires a sandbox key ( |
| Report overall MonCashConnect service status (operational or degraded) and environment. |
| Reveal the unmasked customer details for exactly one payment. Requires a reason, and is audited and rate limited. |
Safety
Your key stays on your machine. It is read from the
MONCASHCONNECT_API_KEYenvironment variable and is never logged.A read only key cannot move money and cannot write to your live account. Every tool in this package is a read operation.
reveal_paymentis audited and rate limited, and requires you to state a reason. Use it only when you genuinely need the unmasked detail.Use a sandbox key (
sk_ro_test_) if you want to exercisecreate_test_payment; a live key (sk_ro_proj_) will refuse that tool.This package only ever contacts
api.moncashconnect.com. It makes no other network calls and does not send your key or your data anywhere else.
License
MIT
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
- 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/SantaClaus007/moncashconnect-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server