PayAgents MCP Server
OfficialPayAgents MCP Server (payagents-mcp)
Der offizielle Model Context Protocol (MCP)-Server für PayAgents. Geben Sie Ihren KI-Agenten (Claude Desktop, Cursor, Windsurf, Zed, LangChain, OpenDevin) eine richtlinienkontrollierte Wallet, um APIs und Tools autonom über Bitcoin Lightning (L402) und Base USDC (x402) zu bezahlen.
⚡ Schnellstart für Claude Desktop
Fügen Sie payagents-mcp zu Ihrer claude_desktop_config.json hinzu:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"payagents": {
"command": "npx",
"args": ["-y", "payagents-mcp"],
"env": {
"PAYAGENTS_API_KEY": "pa_live_your_api_key_here"
}
}
}
}Starten Sie Claude Desktop neu, und Ihr KI-Assistent hat automatisch Zugriff auf die Zahlungstools von PayAgents!
Related MCP server: @arispay/payagent-mcp
🛠️ Verfügbare MCP-Tools
1. payagents_pay_url
Führt eine HTTP-Anfrage an einen beliebigen API-Endpunkt oder eine zahlungspflichtige Ressource aus und löst und bezahlt automatisch HTTP-402-/L402-/x402-Zahlungsherausforderungen innerhalb Ihrer Unternehmensausgabengrenzen.
Parameter:
url(erforderlich, string): Ziel-API-URL.method(optional, Standard: "GET"):GET,POST,PUT,DELETE.body(optional, Objekt/Zeichenkette): Nutzlast des Anforderungstexts.headers(optional, Objekt): Zusätzliche HTTP-Header.max_amount(optional, Zeichenkette): Maximaler Betrag, den Sie zu zahlen bereit sind (z. B."0.01 USD").
2. payagents_get_balance
Überprüft das verfügbare Ausgabenguthaben des Agents, die Abonnementstufe und die aktiven Ausgabenrichtlinien (Transaktionslimits und Tageslimits).
3. payagents_get_transaction
Fragt Details zu einer vergangenen Transaktion ab und zeigt Zahlungsweg, Abwicklungsmethode (🟢 Direkt nicht-verwahrend vs. Plattformverwaltet) und kryptografische Verifikationsnachweise.
💰 Monetarisierung Ihrer eigenen MCP-Tools
Wenn Sie einen MCP-Server erstellen und Mikrogebühren erheben möchten, wenn andere Agents Ihre Tools aufrufen:
npm install payagents-mcp @modelcontextprotocol/sdk zodimport { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
import { mcpCharge } from 'payagents-mcp';
import { z } from 'zod';
const server = new McpServer({ name: 'weather-mcp', version: '1.0.0' });
// Gate your tool behind $0.002 micro-payment
server.tool(
'get_forecast',
'Retrieve real-time radar forecast data',
{ city: z.string() },
mcpCharge({ price: '0.002 USD' }, async ({ city }) => {
return {
content: [{ type: 'text', text: `Forecast data for ${city}` }],
};
})
);🔒 Sicherheit & Ausgabenrichtlinien
Alle Agentenzahlungen werden von Ihrer PayAgents-Dashboard-Richtlinien-Engine durchgesetzt:
Transaktionslimit: Blockiert jeden einzelnen Aufruf, der Ihre Obergrenze überschreitet (z. B. max. 0,01 $).
Tagesbudget-Obergrenze: Verhindert außer Kontrolle geratene Rekursionsschleifen (z. B. max. 5,00 $/Tag).
Domain-Allowlists: Beschränkt die Agentenausgaben nur auf verifizierte Domains.
Trigger für menschliche Genehmigung: Hochwertige Aufrufe werden automatisch zur menschlichen Genehmigung angehalten.
Lizenz
MIT © PayAgents
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
- AlicenseAqualityDmaintenanceEnables AI agents to perform Bitcoin and Lightning Network payments using a non-custodial, zero-trust architecture. It provides 13 tools for wallet management, invoice creation, and payment processing while keeping node credentials local to the user's machine.1316MIT

@arispay/payagent-mcpofficial
AlicenseDqualityFmaintenanceEnables AI agents to call paid APIs and settle HTTP 402 payment challenges with USDC on Base, without private keys ever being involved.2102MIT
@coinbase/payments-mcpofficial
AlicenseNot gradedqualityDmaintenanceCombines wallets, onramps, and payments via x402 to enable AI agents to autonomously discover and pay for services without API keys or complex setup.6957Apache 2.0- AlicenseNot gradedqualityBmaintenanceNon-custodial payment engine for AI agents supporting BTC, ETH, USDT, USDC, XRP, XMR, and ZEC. Exposes wallet, invoice, and payment tools over MCP with per-agent spend limits, plus x402 pay-per-call support.59Business Source 1.1
Related MCP Connectors
Pay for HTTP APIs and charge for your own: x402 micropayments in USDC on Base.
63 pay-per-call tools for agents: vision, text, data, web, blockchain. USDC on Base via x402.
30 pay-per-call APIs for AI agents: compliance, trade, safety, web, data. USDC on Base via x402.
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/Payagents/payagents-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server