loading…
Search for a command to run...
loading…
Connects AI agents to Nepal's payment infrastructure through the PayArk API. It enables users to monitor transaction history, manage projects, and generate host
Connects AI agents to Nepal's payment infrastructure through the PayArk API. It enables users to monitor transaction history, manage projects, and generate hosted checkout links using natural language.
Connect your AI agent to Nepal's payment infrastructure — in minutes.
The PayArk MCP Server is a Model Context Protocol integration that gives AI agents like Claude, Cursor, and Gemini direct access to your PayArk account. Instead of switching between dashboards or writing boilerplate API calls, you can ask your AI in plain language:
"How many payments did we process through Khalti in the last 24 hours?" "Generate a checkout link for Rs. 500." "Why did payment
pay_abc123fail?"
| Tool | What it does |
|---|---|
list_projects |
Lists all your PayArk projects and their IDs |
list_payments |
Fetches transaction history with optional filters |
get_payment |
Gets the full state of a single payment |
create_payment_link |
Generates a hosted checkout URL |
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"payark": {
"command": "npx",
"args": ["-y", "@payark/mcp-server"],
"env": {
"PAYARK_PAT": "pat_your_token_here",
"PAYARK_API_URL": "https://api.payark.dev"
}
}
}
}
PayArk, type to command, and use this command:export PAYARK_PAT=pat_... && npx @payark/mcp-server
For web-based agents or cloud-to-cloud connections, run the server in SSE mode:
export PAYARK_PAT=pat_...
export PORT=3001
bun run @payark/mcp-server --sse
The SSE endpoint will be available at http://localhost:3001/sse.
Authentication is handled via Personal Access Tokens (PATs), which are scoped to your user account rather than any single project. This means:
To get better results from your agent, give it context upfront:
"You are a FinTech assistant with access to PayArk MCP tools. Help me monitor transactions and generate payment links. When I ask for a payment link, suggest the best provider based on recent success rates."
MIT © 2026 PayArk Labs.
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"payark-mcp-server": {
"command": "npx",
"args": []
}
}
}