agentpay-gateway
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., "@agentpay-gatewaycheck my remaining daily credits"
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.
AgentPay Gateway MCP
One MCP installation gives your agent access to 42 backend servers — web search, legal analysis, domain intelligence, QR codes, email verification, SEC filings, patent lookup, and more — with per-call credit billing and one API key instead of 42.
What your agent can do
Call any of the 90+ tools across 42 specialized backend servers through a single MCP endpoint — no separate accounts or API keys per service
Pay per call using a credit system: most tools cost 1–3 credits, compute-heavy tools (contract analysis, SEO audit, legal contract generation) cost 5–8 credits
Check remaining daily credits and account status at any time via
gateway_infoGet a Stripe checkout link to upgrade when credits are exhausted — the server returns the URL directly
Run in demo mode locally (no database) or full mode with Supabase-backed credit ledger and Stripe billing
Deploy via Docker with environment variables for a production-ready self-hosted gateway
Related MCP server: Ready APIs
Installation
Requires: Python 3.10+, mcp, httpx, anyio packages.
pip install mcp httpx anyioThe gateway runs as an HTTP server (not stdio). It must be started separately before connecting your MCP client.
# Demo mode — no database required
python server.py --port 8000
# Production mode — set env vars first
export SUPABASE_URL=https://your-project.supabase.co
export SUPABASE_SERVICE_KEY=your-service-key
export STRIPE_API_KEY=sk_live_...
export STRIPE_CHECKOUT_LINK=https://buy.stripe.com/...
python server.py --port 8000Claude Desktop — add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"agentpay-gateway": {
"url": "http://localhost:8000/mcp",
"headers": {
"X-API-Key": "YOUR_API_KEY_HERE"
}
}
}
}Cursor — add to .cursor/mcp.json in your project root:
{
"mcpServers": {
"agentpay-gateway": {
"url": "http://localhost:8000/mcp",
"headers": {
"X-API-Key": "YOUR_API_KEY_HERE"
}
}
}
}Docker:
docker build -t agentpay-gateway .
docker run -p 8000:8000 \
-e SUPABASE_URL=https://your-project.supabase.co \
-e SUPABASE_SERVICE_KEY=your-service-key \
-e STRIPE_API_KEY=sk_live_... \
-e STRIPE_CHECKOUT_LINK=https://buy.stripe.com/... \
agentpay-gatewayTool Reference
Tool | Description | Key params |
| Check credit balance, tier, and daily usage |
|
| Get Stripe checkout URL to upgrade to Pro |
|
Any backend tool | Proxied to the appropriate backend server |
|
Credit costs by category
Category | Tools | Credits per call |
Search, weather, DNS, QR, Wikipedia |
| 1 |
Audit, memory, messaging, email verify |
| 1–2 |
Domain intel, screenshots, crypto, PDF |
| 2–4 |
Court records, SEC filings, patent search |
| 2–3 |
Contract analysis, legal, SEO audit |
| 3–8 |
Backend Server Registry (42 servers)
Category | Servers |
Search & Web | search-proxy-mcp, web-scraper-mcp, hackernews-mcp, wikipedia-mcp |
Compliance & Audit | agent-audit-mcp, hallucination-guard, secret-scanner-mcp |
Finance | agent-wallet-mcp, crypto-market-mcp, currency-exchange-mcp, sec-financial-mcp |
Legal | agent-contract-mcp, agent-legal-counsel-mcp, contract-analyzer-mcp, court-records-mcp |
Identity & Trust | agent-passport-mcp, agent-proof-mcp |
Agents & Teams | agent-hire-mcp, agent-team-mcp, agent-memory-mcp, agent-messaging-mcp |
Domain & Network | dns-lookup-mcp, domain-data-mcp, domain-intel-mcp, ip-geolocation-mcp, ssl-check-mcp |
Productivity | email-agent-mcp, email-verify-mcp, notification-mcp, pdf-generator-mcp, file-converter-mcp, qr-code-mcp, screenshot-mcp, text-to-speech-mcp |
Intelligence | image-analyzer-mcp, patent-search-mcp, seo-audit-mcp, rental-agent-mcp, weather-mcp |
Infrastructure | database-mcp, mcp-health-monitor, agent-cost-tracker-mcp |
Pricing
Tier | Daily credits | Monthly price | Cost per call |
Free | 100 | $0 | 1–8 credits |
Pro | 10,000 | $19/month | 1–8 credits |
Credits reset daily. When credits are exhausted, gateway_upsell returns a Stripe checkout URL.
License
MIT — AgentPay Labs. Source: github.com/Rumblingb/agentpay-gateway-mcp
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.
Related MCP Servers
- Alicense-qualityCmaintenance23 pay-per-call web analysis APIs as MCP tools. Security audits, tech stack detection, email verification, SEO analysis, SSL checks, performance monitoring. Supports x402 and Stripe MPP payments.Last updated946MIT

Ready APIsofficial
Alicense-qualityCmaintenanceMCP tools for geo, email, phone, company, DNS, FX, equities, weather, tax, economics, and intelligence — streamable HTTP, one API key.Last updatedMIT
Crawlora MCPofficial
AlicenseCqualityAmaintenanceHosted MCP server for structured public web data — 319 tools across search, maps, commerce, social & finance, returning clean JSON.Last updated1004491MIT- AlicenseCqualityBmaintenanceFull-stack utility API with 337+ tools including AI chat, web scraping, weather, finance, SEO, crypto, colors, readability, DNS, and more — all through a single MCP server. Pay-as-you-go credits, no API keys needed.Last updated1001Apache 2.0
Related MCP Connectors
34 production API tools over one hosted MCP endpoint.
Hosted MCP: 319 structured web-data tools for search, maps, commerce, social & finance.
Hosted MCP with 91 agent tools: X, domains, SEO, Maps, Trends, Search, YouTube, TikTok, and more.
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/Rumblingb/agentpay-gateway-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server