PayDesk MCP
Stores disputes, support tickets, transaction metadata, and webhook delivery logs.
Implements the double-entry accounting ledger, payouts, fee schedules, and balances.
Caches merchant profiles, active developer API keys, dashboard sessions, and rate-limiting buckets.
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., "@PayDesk MCPget the balance for merchant MER-1005"
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.
PayDesk MCP
PayDesk MCP is a production-grade Model Context Protocol (MCP) server that exposes payment gateway APIs, tools, prompts, and resources. It bridges the gap between an AI assistant (like Claude, Gemini, or ChatGPT) and three underlying database systems to resemble real payment services like Stripe, Razorpay, or PayPal.
Architecture
The server aggregates data across Redis, MongoDB, and PostgreSQL to provide consolidated ledger, dispute, support, and session APIs.
User
↓
AI Assistant
↓
[Bearer Auth JWT]
↓
FastMCP Server
↓
┌───────┼──────────────┐
↓ ↓ ↓
Redis MongoDB PostgreSQLRedis: Caches merchant profiles, active developer API keys, dashboard sessions, and rate-limiting buckets.
MongoDB: Stores disputes, support tickets, transaction metadata, and webhook delivery logs.
PostgreSQL: Implements the double-entry accounting ledger, payouts, fee schedules, and balances.
Related MCP server: razorpay-mcp
Features
Authentication: JWT Bearer token validation via Starlette HTTP middleware.
Authorization & Scoping: Centralized merchant scoping preventing cross-merchant access.
Audit Logging: Automatic logging of tool execution, arguments, and outcomes into MongoDB.
Database Adapters: Validation of configuration secrets loaded securely via
python-dotenv.MCP Tools: 36 specialized tools for key management, dispute evidence, bank payouts, and payment statistics.
MCP Resources: 15 endpoints providing read-only states (e.g. balance, open tickets, system AML/KYC policies).
MCP Prompts: 10 pre-registered system templates aiding LLMs in payment operation diagnostics.
Prerequisites
Python: 3.10 or higher
Redis: 6.x or higher (Listening on port
6379)MongoDB: 5.x or higher (Listening on port
27017)PostgreSQL: 15.x or higher (Listening on port
5432with a database namedpaydesk)Git & pip
Installation
Clone the repository:
git clone <repository_url> cd paydesk-mcpCreate a virtual environment:
python -m venv .venv .venv\Scripts\activate # On Windows source .venv/bin/activate # On Unix/macOSInstall dependencies:
pip install -r requirements.txt
Configure Environment
Copy the template file:
cp .env.example .envFill in your environment credentials in
.env: Ensure your local PostgreSQL database, username, and password (JaiBagga02@by default or custom) are set.
Start Databases
Option A: Local Native Services
Windows Services: Open
services.mscand startMongoDB,postgresql-x64-18, andRedisservices.WSL/Linux Services:
sudo service redis-server start sudo service mongodb start sudo service postgresql start
Option B: Docker Compose
If you prefer Docker, start all three databases using:
docker run -d --name paydesk-redis -p 6379:6379 redis:alpine
docker run -d --name paydesk-mongo -p 27017:27017 mongo:latest
docker run -d --name paydesk-postgres -p 5432:5432 -e POSTGRES_USER=postgres -e POSTGRES_PASSWORD=JaiBagga02@ -e POSTGRES_DB=paydesk postgres:alpineSeed Data
To populate transaction and dispute records:
Transactions & Ledger Data: Run the postgres/mongo seeding script if available (e.g.,
seed/seed_malicious_tickets.pyor default database seeders):python seed/seed_malicious_tickets.pyInserts demo support tickets into MongoDB with special payloads to test prompt injection defenses.
Run Server
Run the server natively:
python server.pyOr run using FastMCP CLI:
fastmcp run server.pyExpected Startup Output
Starting PayDesk MCP server on 127.0.0.1:8000 with log level 'info'...
INFO: Started server process [12345]
INFO: Waiting for application startup.
INFO: Application startup complete.
INFO: Uvicorn running on https://127.0.0.1:8000 (Press CTRL+C to quit)Open MCP Inspector
To test tools and resources inside a visual debugger:
npx @modelcontextprotocol/inspector fastmcp run server.pyThis launches a browser-based UI to invoke tools and read resources dynamically.
Example Tool Calls
When interacting with the MCP server, the LLM can invoke these commands:
Get Merchant Balance:
Tool:
get_merchant_balanceArguments:
{"merchant_id": "MER-1005"}
Get Recent Transactions:
Tool:
get_recent_transactionsArguments:
{"merchant_id": "MER-1005", "limit": 5}
Check Merchant Health:
Tool:
check_merchant_healthArguments:
{"merchant_id": "MER-1005"}
Retrieve Support Tickets:
Tool:
get_support_ticketArguments:
{"ticket_id": "TCK-501"}
Troubleshooting
Redis connection failed: Ensure Redis is running and listening on port
6379. Runnetstat -ano | findstr 6379.Mongo not running: Check if the MongoDB service is active. Check
pymongo.errors.ServerSelectionTimeoutError.Postgres authentication failed: Check
POSTGRES_USERandPOSTGRES_PASSWORDin.envand verify PostgreSQL is listening on port5432.Missing .env: Ensure you ran
cp .env.example .envand didn't leave variables blank. Described startup errors will prevent execution.Port already in use: Change
MCP_PORTin.envif8000is occupied.
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/jbagga07/paydesk-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server