CCM
/MCP
SkillsMCPMarketplacesDigestLearnAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Learn
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Agentpay Gateway Mcp

rumblingb/agentpay-gateway-mcp
1registry active
Summary

This is a paid API gateway that sits between your MCP client and 42 backend MCP servers, metering each tool call against a credit balance stored in Supabase. Instead of managing connections to dozens of individual servers like search-proxy-mcp, agent-wallet-mcp, or pdf-generator-mcp, you route everything through a single endpoint at localhost:8000/mcp with an API key. It deducts credits per call, enforces daily limits (100 free, 10,000 for $19/mo via Stripe), and proxies requests to the appropriate backend server by port. You'd reach for this if you're building a service where you want usage-based billing across a broad MCP toolset without running infrastructure for each one. The tradeoff is adding a paid intermediary layer to what are otherwise direct MCP connections.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
Put your SEO on autopilot
Put your SEO on autopilot
An agent that runs the SEO playbooks that move rankings and ships PRs you control.
Get founding access →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
Put your SEO on autopilot
Put your SEO on autopilot
An agent that runs the SEO playbooks that move rankings and ships PRs you control.
Get founding access →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
Put your SEO on autopilot
Put your SEO on autopilot
An agent that runs the SEO playbooks that move rankings and ships PRs you control.
Get founding access →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
Categories
Finance & Commerce
Registryactive
UpdatedJun 3, 2026
View on GitHub

AgentPay

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_info
  • Get 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

Installation

Requires: Python 3.10+, mcp, httpx, anyio packages.

pip install mcp httpx anyio

The 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 8000

Claude 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-gateway

Tool Reference

ToolDescriptionKey params
gateway_infoCheck credit balance, tier, and daily usageapi_key
gateway_upsellGet Stripe checkout URL to upgrade to Proapi_key
Any backend toolProxied to the appropriate backend serverapi_key, plus the tool's own params in args

Credit costs by category

CategoryToolsCredits per call
Search, weather, DNS, QR, Wikipediasearch_web, weather_current, dns_lookup, qr_generate, etc.1
Audit, memory, messaging, email verifyaudit_log, memory_store, message_send, etc.1–2
Domain intel, screenshots, crypto, PDFdomain_intel, screenshot_take, pdf_generate, etc.2–4
Court records, SEC filings, patent searchcourt_search, sec_filings, patent_search, etc.2–3
Contract analysis, legal, SEO auditcontract_analyze, legal_generate_contract, seo_audit, etc.3–8

Backend Server Registry (42 servers)

CategoryServers
Search & Websearch-proxy-mcp, web-scraper-mcp, hackernews-mcp, wikipedia-mcp
Compliance & Auditagent-audit-mcp, hallucination-guard, secret-scanner-mcp
Financeagent-wallet-mcp, crypto-market-mcp, currency-exchange-mcp, sec-financial-mcp
Legalagent-contract-mcp, agent-legal-counsel-mcp, contract-analyzer-mcp, court-records-mcp
Identity & Trustagent-passport-mcp, agent-proof-mcp
Agents & Teamsagent-hire-mcp, agent-team-mcp, agent-memory-mcp, agent-messaging-mcp
Domain & Networkdns-lookup-mcp, domain-data-mcp, domain-intel-mcp, ip-geolocation-mcp, ssl-check-mcp
Productivityemail-agent-mcp, email-verify-mcp, notification-mcp, pdf-generator-mcp, file-converter-mcp, qr-code-mcp, screenshot-mcp, text-to-speech-mcp
Intelligenceimage-analyzer-mcp, patent-search-mcp, seo-audit-mcp, rental-agent-mcp, weather-mcp
Infrastructuredatabase-mcp, mcp-health-monitor, agent-cost-tracker-mcp

Pricing

TierDaily creditsMonthly priceCost per call
Free100$01–8 credits
Pro10,000$19/month1–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

Related Finance & Commerce MCP Servers

View all →
Shopify Subscription Reconciliation MCP (Recharge Edition)

io.github.shelvick/shopify-subscription-reconciliation

Reconcile Shopify orders against Recharge subscription charges and Stripe payouts.
Meok Stripe Acp Checkout Mcp

csoai-org/meok-stripe-acp-checkout-mcp

MEOK Stripe ACP Checkout MCP — ChatGPT shopping bridge. Issues + verifies + signs Stripe Agentic
Stripe Billing Mcp

csoai-org/stripe-billing-mcp

stripe-billing-mcp MCP server by MEOK AI Labs
Google Ads

ai.adramp/google-ads

Google Ads MCP server — manage campaigns, keywords, and metrics.
Google Ads Mcp

co.pipeboard/google-ads-mcp

Google Ads automation with AI: analyze performance, manage campaigns, optimize bids.
Curie Commerce

co.curie/commerce

Search, compare in 3D, and buy products from 5.6M+ Shopify stores. Free tier; Pro adds checkout.