paygentic
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., "@paygenticWhat's my wallet balance?"
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.
PayGent SDK
Financial infrastructure for AI agents. Give your agents native tools to earn, send, and manage money.
SDK:
npm install paygentic-sdk— typed REST client for Node.js & browsersMCP Server:
npx paygentic-sdk— Model Context Protocol server with 13 tools
Quick Start
SDK (code)
import { PayGent } from 'paygentic-sdk';
const paygent = new PayGent({ apiKey: 'pg_live_...' });
// Check balance
const wallet = await paygent.getWallet('wallet-id');
console.log(wallet.balance);
// Send money
await paygent.sendMoney({
fromWalletId: 'wallet-a',
toWalletId: 'wallet-b',
amount: 3.50,
description: 'API cost reimbursement'
});
// Create invoice
const invoice = await paygent.createInvoice({
walletId: 'wallet-a',
amount: 15.00,
title: 'Data export task'
});
console.log(invoice.paymentUrl);
// Sign up (no API key needed)
const account = await paygent.signup({
email: 'bot@example.com',
password: 'secure-password-123',
agentName: 'my-first-agent'
});
console.log(account.apiKey);MCP Server (agent tools)
Add to your MCP client config:
{
"mcpServers": {
"paygentic": {
"command": "npx",
"args": ["-y", "paygentic-sdk"],
"env": {
"PAYGENTIC_API_KEY": "pg_live_xxxxxxxxxxxx",
"PAYGENTIC_BASE_URL": "https://paygentic-one.vercel.app"
}
}
}
}Then ask your agent:
"Sign me up for PayGent"
"What's my wallet balance?"
"Send $3.50 to my transcription agent"
"Create an invoice for $15 for the data export task"
"Set a daily spending cap of $50 on my research agent"
"Show me the audit log for the last 7 days"
Related MCP server: remit.md MCP Server
MCP Tools
Tool | Description | Auth |
| Create account + wallet + API key | None |
| Get wallet balance and status | API key |
| List all your wallets | API key |
| Create a new wallet | API key |
| Send money between wallets (previews first) | API key |
| Create a public invoice anyone can pay | API key |
| List invoices | API key |
| Agent-initiated spend (policy-checked) | API key |
| Add spending limits to a wallet | API key |
| List spending policies | API key |
| Read the immutable audit trail | API key |
| Get transaction history | API key |
| Dashboard overview | API key |
Configuration
Env Variable | Default | Description |
| — | Your agent API key ( |
|
| PayGent API base URL |
License
MIT — UNCONSTRAINED.CAPITAL LTD
Maintenance
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
- Alicense-qualityDmaintenanceEnables AI agents to manage personal expenses through natural language conversations. Supports adding, searching, and analyzing transactions with automatic categorization and financial insights.Last updated3MIT
- Alicense-qualityFmaintenanceEnables AI agents to perform financial transactions such as direct payments, escrows, and bounty management using natural language with zero code integration. It provides a comprehensive suite of tools for fund streaming, subscriptions, and reputation tracking to facilitate secure agent-to-agent commerce.Last updated29MIT
- Alicense-qualityDmaintenanceEnables AI agents to access Magpie Payment Platform APIs for processing payments, creating checkout sessions, sending invoices, and managing payment links through natural conversation.Last updated391MIT
- Alicense-qualityCmaintenanceEnables AI agents to hold wallets, make payments, and charge for services using the Setu payment network.Last updated5MIT
Related MCP Connectors
Connect AI agents to bank accounts, transactions, balances, and investments.
Agent payments, API key vaulting, and governed mandates. Agents spend within user-defined limits.
Agent bookkeeping, sanctions, KYB, VAT and e-invoice checks - pay per call in USDC
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/FoxRick/paygentic-sdk'
If you have feedback or need assistance with the MCP directory API, please join our Discord server