@moncashconnect/mcp

@moncashconnect/mcp

Enables AI coding assistants to interact with MonCashConnect payment data read-only, including checking balances, listing transactions, and viewing payment details, without moving money.

Category
Visit Server

README

@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

  1. Open the MonCashConnect dashboard.
  2. Go to Read-only / AI keys.
  3. 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 for create_test_payment.

A full power sk_proj_... key will be rejected. This package only accepts read-only keys.

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 build

Then 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_payment Get one payment by its merchant reference: status, amount, and timestamps, with customer data masked.
list_transactions List recent transactions, masked, with filters for status, type, and date range, paginated.
get_balance Get the merchant's current available balance in HTG.
debug_payment Explain why a payment is in its current state, with a sanitized diagnosis and suggestion.
create_test_payment Create a sandbox test payment and return a payment URL and reference. Requires a sandbox key (sk_ro_test_); never moves real money.
get_api_health Report overall MonCashConnect service status (operational or degraded) and environment.
reveal_payment 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_KEY environment 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_payment is 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 exercise create_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

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured