AgentPay
What it does: Payment layer for autonomous AI agents — fund via Telegram Stars or USDC, set spending rules, let agents operate independently.
MCP Server URL: https://leofundmybot.dev/mcp (Streamable HTTP)
GitHub: https://github.com/lfp22092002-ops/agentpay
Website: https://leofundmybot.dev
Tools provided:
get_balance — Check agent wallet balance
spend — Deduct from agent wallet
transfer — Agent-to-agent transfers
get_transactions — Transaction history
create_agent — Provision new agent with wallet
get_identity — KYA (Know Your Agent) identity + trust score
register_webhook — Real-time event notifications
Features:
- Multi-chain USDC wallets (Base, Polygon, BNB Chain, Solana)
- Telegram Stars funding (instant, in-app)
- x402 protocol support (HTTP-native payments)
- Agent identity with trust scoring (KYA)
- Budget governance + approval workflows
- Python SDK (
pip install agentpay)
- Self-hostable, open source (MIT)
Server configuration:
{
"mcpServers": {
"agentpay": {
"url": "https://leofundmybot.dev/mcp",
"headers": {
"x-api-key": "YOUR_API_KEY"
}
}
}
}
Or run locally:
{
"mcpServers": {
"agentpay": {
"command": "python",
"args": ["mcp/server.py"],
"env": {
"AGENTPAY_API_KEY": "YOUR_API_KEY"
}
}
}
}