MerchantGuard MCP Server
OfficialProvides fraud scoring and risk intelligence for transactions processed via Coinbase, including crypto and stablecoin payments.
Provides fraud scoring and risk intelligence for transactions processed via Stripe, acting as a cross-rail security layer alongside Stripe payment processing.
Provides Visa VAMP analysis and fraud detection for Visa transactions, including threshold distances and remediation actions.
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., "@MerchantGuard MCP ServerScore a $150 USDC transaction for fraud risk."
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.
MerchantGuard MCP Server
AI-native fraud scoring and risk intelligence for agentic commerce.
A Model Context Protocol (MCP) server that provides real-time fraud detection, risk scoring, and compliance tools for AI agents processing payments. Works alongside any payment MCP server (Worldpay, Stripe, Coinbase, etc.) as the security and trust layer.
Why MerchantGuard MCP?
As AI agents begin transacting autonomously (200M+ agent orders on Alibaba, DoorDash building agentic commerce, Stripe confirming stablecoins as core infrastructure), the payment industry faces a critical gap: existing fraud tools only work within their own rail.
Visa's fraud detection only scores Visa transactions. Stripe Radar only works on Stripe. But agents will use multiple rails simultaneously — cards, stablecoins, crypto, ACH. Who scores across all of them?
MerchantGuard MCP is the cross-rail security layer for the agentic economy.
AI Agent
-> MerchantGuard MCP (risk scoring) <-- YOU ARE HERE
-> Worldpay MCP / Stripe MCP / Coinbase (payment processing)Related MCP server: revettr
Tools
Tool | Category | Description |
| Scoring | Score any transaction for fraud risk (0-100) before payment. Supports card, stablecoin, crypto, ACH, wire. |
| Scoring | Look up a merchant's GuardScore, verification status, chargeback rate, and VAMP standing. |
| Scoring | Privacy-preserving agent verification via OPRF (RFC 9497). Agents prove trustworthiness without exposing internals. The "3DS for AI agents." |
| Monitoring | Predict chargeback probability and recommended preventive actions. |
| Monitoring | Detect anomalous transaction velocity for merchants, agents, cards, or wallets. |
| Compliance | Analyze activity across multiple payment rails to detect cross-rail fraud. |
| Compliance | Analyze Visa VAMP status with threshold distances and remediation actions. |
Quick Start
Using npm
npm install
npm run build
npm startUsing Docker
docker build -t merchantguard/mcp .
docker run -p 3002:3002 --env-file .env merchantguard/mcpUsing stdio (for Claude Desktop, Cursor, etc.)
npm run start:stdioConfiguration
Copy .env.example to .env:
cp .env.example .envVariable | Default | Description |
|
| MerchantGuard API endpoint |
|
| API key (demo mode works without a key) |
|
| HTTP server port |
|
| Score below this = high risk |
|
| Score below this = medium risk |
|
| Score below this = auto-decline |
Integration Examples
With Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"merchantguard": {
"command": "node",
"args": ["/path/to/merchantguard-mcp/dist/server-stdio.js"],
"env": {
"MERCHANTGUARD_API_KEY": "your_key_here"
}
}
}
}With Worldpay MCP (Side-by-Side)
An AI agent connects to both servers. Before processing any payment through Worldpay, it first scores the transaction through MerchantGuard:
{
"mcpServers": {
"merchantguard": {
"command": "node",
"args": ["/path/to/merchantguard-mcp/dist/server-stdio.js"]
},
"worldpay": {
"command": "node",
"args": ["/path/to/worldpay-mcp/dist/server-stdio.js"]
}
}
}Agent workflow:
Call
guardscore_transaction_riskto score the transactionIf approved, call
guardscore_merchant_lookupto verify the merchantIf the agent is autonomous, call
guardscore_agent_verifyto confirm authorizationProcess payment via Worldpay's
take_guest_paymentCall
guardscore_dispute_predictto assess post-transaction risk
With OpenAI Agentic Commerce Protocol (ACP)
MerchantGuard MCP can serve as the risk assessment layer in ACP flows:
Buyer Agent -> ACP Checkout -> MerchantGuard (risk check) -> Payment Provider -> MerchantArchitecture
src/
api/
guardscore.ts # GuardScore API client
tools/
mcp-tool.ts # Base tool interface
scoring/
TransactionRiskScore.ts # Pre-payment risk scoring
MerchantLookup.ts # Merchant intelligence
AgentVerify.ts # AI agent verification
monitoring/
DisputePredict.ts # Chargeback prediction
VelocityCheck.ts # Velocity anomaly detection
compliance/
CrossRailCheck.ts # Cross-rail fraud detection
VAMPAnalysis.ts # Visa VAMP compliance
schemas/
schemas.ts # Zod validation schemas
types/
index.ts # TypeScript type definitions
utils/
logger.ts # Logging
mcp-response.ts # MCP response helpers
merchantguard-mcp-server.ts # Main server class
server-http.ts # HTTP transport entry point
server-stdio.ts # stdio transport entry pointAbout MerchantGuard
MerchantGuard is the privacy-preserving fraud scoring platform for high-risk and agentic commerce. Our patented cross-rail fraud detection technology scores transactions across card networks, stablecoins, and crypto — providing unified risk intelligence that rail-specific tools can't match.
Patent Portfolio: Cross-Lingual BFT Paradox scoring, Multi-Agent AI Security, and GuardScore risk engine.
Member: Agentic AI Foundation (AAIF) by the Linux Foundation.
Privacy-Preserving Architecture: OPRF behavioral fingerprinting (RFC 9497), soulbound agent credentials, zero-knowledge trust verification. Agents prove compliance without exposing internals.
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
- 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/MerchantGuardOps/merchantguard-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server