zen-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., "@zen-mcpCreate a payment link for 100 EUR"
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.
ZEN MCP
An MCP server that lets AI assistants work with the ZEN.com Payment Gateway: hosted payment links, transaction lookup, refunds, payouts, and reporting.
Unofficial. This project is not affiliated with, endorsed by, or maintained by ZEN.com.
What it does
Read-only tools:
List terminal payment methods and documented currencies.
Look up transactions, payment links, and payouts.
List payment links and request reconciliation reports.
Verify IPN webhook signatures locally.
Write tools:
Create hosted payment links and QR codes without handling card data.
Capture or cancel transactions and issue full or partial refunds.
Create payouts and customer records.
Related MCP server: maib-mcp
Disclaimer
This integration was built from public ZEN documentation without access to a live merchant account. Endpoint versions, request fields, response fields, signing details, and webhook behavior must be checked against ZEN's current OpenAPI or Postman collection before production use. Mock mode is included for evaluation without an account.
Install
Add the published package to Claude Code:
claude mcp add zen --env ZEN_API_KEY=your_terminal_api_key -- npx -y @krystiangw/zen-mcpFor Claude Desktop, add this entry to its MCP configuration:
{
"mcpServers": {
"zen": {
"command": "npx",
"args": ["-y", "@krystiangw/zen-mcp"],
"env": {
"ZEN_API_KEY": "your_terminal_api_key",
"ZEN_PAYWALL_SECRET": "your_paywall_secret",
"ZEN_IPN_SECRET": "your_ipn_secret",
"ZEN_ENV": "sandbox"
}
}
}
}Configuration
Variable | Required | Description |
| Outside mock mode | Terminal API Key sent in |
| Write operations | Checkout/paywall secret used to sign request bodies |
| Webhook verification | IPN secret used only by |
| No |
|
| No | API base URL override; takes priority over |
| No |
|
| No |
|
In the ZEN merchant panel, go to my.zen.com → Shop settings → Terminal to find the Terminal API Key. Use sandbox first; the default API host is api.zen-test.com, although sandbox availability and onboarding requirements should be confirmed with ZEN.
No merchant account yet? You can open a ZEN business account. That is a referral link: it credits the author of this project if you sign up through it, and costs you nothing. Every other link in this README is a plain one.
Tools
Name | Type | Description |
| Read | List payment methods for the terminal |
| Read | Get a transaction by ZEN or merchant ID |
| Read | List hosted payment links |
| Read | Get one hosted payment link |
| Read | Get a payout by ZEN ID |
| Read | Request a report download |
| Read | List documented supported currencies |
| Read | Verify a ZEN IPN signature locally |
| Write | Create a hosted checkout link and QR code |
| Write, destructive | Issue a full or partial refund |
| Write, destructive | Capture an authorized transaction |
| Write, destructive | Cancel a transaction |
| Write, destructive | Send an outbound payout |
| Write | Create a customer record |
Security
Tools are read-only by default; operations that move or reverse money are marked destructive for MCP clients.
Secrets are read only from environment variables and are never tool arguments.
Payment acceptance uses ZEN-hosted links, so this server does not collect or transmit card numbers.
The signing algorithm follows public ZEN documentation, but nested-object and array flattening are not fully specified publicly. Verify it against the live API.
Verify every IPN webhook signature with
ZEN_IPN_SECRETbefore trusting its contents.Use least-privilege terminal credentials and keep human confirmation enabled for write tools.
Demo without an account
Run the server with deterministic canned API responses:
ZEN_MOCK=1 ZEN_IPN_SECRET=demo npx -y @krystiangw/zen-mcpverify_webhook_signature does real cryptography instead of calling the API, so it needs a secret even in mock mode. Any value works for a demo.
From a development checkout:
npm install
npm run build
ZEN_MOCK=1 ZEN_IPN_SECRET=demo npm run inspectDevelopment
Requires Node.js 18 or newer.
npm install
npm run typecheck
npm run build
npm test
ZEN_MOCK=1 ZEN_IPN_SECRET=demo npm run inspectRoadmap
Raw card charges only after a deliberate PCI/security design; they are excluded from the MVP.
Recurring and one-click payments after the tokenization flow is verified.
Consumer ZEN features such as cashback and personal cards if ZEN publishes a supported API.
Remote Streamable HTTP transport and OAuth after the stdio MVP.
License
This server cannot be installed
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
- AlicenseAqualityBmaintenanceMCP server for PayMongo payment gateway (Philippines). Supports payment intents, sources, payments, refunds, and checkout sessions via Basic Auth.24121MIT
- AlicenseAqualityDmaintenanceMCP server for MAIB e-commerce payments (Moldova). Supports payments, refunds, recurring billing, one-click payments, and transaction status via OAuth 2.0.813MIT
- AlicenseAqualityDmaintenanceMCP server for Bank of Georgia iPay payment gateway, enabling payment orders, refunds, recurring payments, and pre-authorization via OAuth 2.0 + JWT.87MIT
- AlicenseAqualityDmaintenanceMCP server for PayTabs payment gateway (MENA region). Enables payment page creation, transaction management, refunds, voids, tokenization, and payment method discovery.816MIT
Related MCP Connectors
MCP Server for agents to onboard, pay, and provision services autonomously with InFlow
MCP server integrating with Stripe - tools for customers, products, payments, and more.
MCP server for the PDFGate API. Generate PDFs, manage documents and handle e-signatures.
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/krystiangw/zen-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server