@moncashconnect/mcp
Click on "Deploy 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: Alternative Payments 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 deployed
Maintenance
Related MCP Connectors
Read-only bank access for your AI agent. Connects Claude, ChatGPT, Cursor, Gemini, Codex.
- BankSyncOAuthio.banksync
Connect AI agents to bank accounts, transactions, balances, and investments.
Read-only access to Genie accounts, transactions, investments, and financial summaries.
Connect your Mercado Pago account to AI via Brazil's Open Finance: balances, statements, cards, inve
Related MCP Servers
- AlicenseNot gradedqualityFmaintenanceProvides read-only access to Monarch Money financial data, enabling AI assistants to analyze transactions, budgets, and cashflow.4MIT

Alternative Payments MCPofficial
FlicenseNot gradedqualityAmaintenanceProvides AI assistants with read and safe-write access to Alternative Payments customers, invoices, payment requests, transactions, payouts, and webhooks without directly moving money.-- FlicenseBqualityCmaintenanceA secure, read-only MCP server that enables AI assistants to inspect transactions, vendor performance, wallet balances, and analytics through validated REST API calls.19-
- AlicenseNot gradedqualityBmaintenanceEnables AI assistants to inspect BLMPay balances, payments, payouts, webhooks, and API capabilities through MCP tools, with write/financial tools disabled by default for security.MIT