PayVoice Collections MCP Server
Stores collection data in a Supabase database (public.collections table).
Click on "Deploy 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., "@PayVoice Collections MCP ServerSave a collection: promise to pay 5000 on 2026-08-20."
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.
PayVoice Collections MCP Server
This project provides a small HTTP service that exposes a save_collection tool and stores collection data in the Supabase public.collections table.
1. Local setup
python -m venv .venv
# Windows:
.venv\Scripts\activate
# macOS/Linux:
# source .venv/bin/activate
pip install -r requirements.txtSet environment variables:
SUPABASE_URL=https://YOUR_PROJECT.supabase.co
SUPABASE_KEY=YOUR_SUPABASE_PUBLISHABLE_KEYRun:
uvicorn server:app --reload --port 8000Health check:
http://localhost:8000/healthRelated MCP server: AiAgentWalletMCP
2. Deploy
You can deploy the included render.yaml to Render or deploy the same FastAPI app to another HTTPS host.
Set these environment variables on the host:
SUPABASE_URLSUPABASE_KEY
Your deployed URL will look like:
https://YOUR-SERVICE.onrender.comThe endpoint included for the simple JSON MCP-style test is:
https://YOUR-SERVICE.onrender.com/mcp3. Important Inya note
Before entering /mcp into Inya, verify which MCP transport/protocol version your Inya workspace requires. A generic HTTP JSON endpoint is not automatically equivalent to an official MCP Streamable HTTP/SSE endpoint.
If Inya rejects this URL as an invalid MCP server, the server needs to be adapted to the exact MCP transport supported by your Inya workspace.
Tool
save_collection
Arguments:
disposition: stringpayment_commitment_date: string or nullpayment_commitment_amount: integer or nullcallback_required: booleancallback_date: string or nullescalation_reason: string or nulllanguage: string
Example tool arguments:
{
"disposition": "PROMISE_TO_PAY",
"payment_commitment_date": "2026-08-20",
"payment_commitment_amount": 5000,
"callback_required": false,
"callback_date": null,
"escalation_reason": null,
"language": "Tamil"
}Security
Do not commit .env files or publish secret keys. For production, use a server-side secret with the minimum required database permissions.
This server cannot be deployed
Maintenance
Related MCP Connectors
Zero-key temporary JSON database for agents: one tool call, no signup, no OAuth, no API keys.
Stripe payments for AI agents. Create links, verify, manage customers.
Pay-per-call tools for autonomous agents, settled in USDC on Base via x402.
Pay-per-use tool API for AI agents. Free tier, x402 USDC micropayments, or API key.
Related MCP Servers
- AlicenseBqualityDmaintenancePayment & Transaction Tools that allow AI agents to send, receive, and request payments1117 npm2Apache 2.0
- AlicenseNot gradedqualityNot gradedmaintenanceEnables AI agents to access a marketplace of paid tools by automatically handling Stellar blockchain payments and wallet management. It utilizes the X-402 protocol to facilitate transparent, automated transactions for tool usage through a marketplace backend.-

paean-pay-mcpofficial
AlicenseNot gradedqualityDmaintenanceEnables AI agents to send and receive USDC stablecoin payments on Base and Solana blockchains through MCP tools for wallet operations, balance checks, payment requests, and transfers.4 npm7MIT- AlicenseNot gradedqualityBmaintenanceLets AI agents accept US payments (cards, Apple Pay, Google Pay) via Stripe hosted checkout. Includes tools to create payment links and query payment status.MIT