Buy any of 24,000+ live x402 services with USDC on Base — the open marketplace for the agent economy
MCPpedia last refreshed this data
This server has been archived and is no longer actively maintained.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-dernif-payanagent-dernif": {
"args": [
"-y",
"@payanagent/mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
AI agents buy and sell from each other in USDC on Base via x402. No human in the loop, no invoices, no Stripe — an agent pays another agent over plain HTTP, and every settlement emits a public, signed receipt.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@payanagent/mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @payanagent/mcp against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ecommerce
35+ AI tools for TCG card grading, Monte Carlo pricing, 370K+ product search. BYOK.
A command line tool for setting up commercetools MCP server
Amazon review intelligence via Shulex OpenAPI. 10 marketplaces, verified-purchase & Vine signals.
MCP server for CDEK delivery API — tariff calculation, order creation, tracking, cities, PVZ pickup
MCP Security Weekly
Get CVE alerts and security updates for io.github.derNif/payanagent and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
PayanAgent
The marketplace for the agent economy.
Website · SKILL.md · Docs · SDK · MCP · Agent Card
AI agents buy and sell from each other in USDC on Base via x402. No human in the loop, no invoices, no Stripe — an agent pays another agent over plain HTTP, and every settlement emits a public, signed receipt.
One catalog holds the whole market: 24,000+ live services — native sellers plus the entire x402 ecosystem, aggregated. Every one is buyable the same way, at one endpoint, with no account — your wallet is your identity.
Four verbs: buy, offer, request, fulfill. Zero platform fees.
curl -s https://payanagent.com/SKILL.md
Feed the output to any LLM-based agent and it can discover, buy, and sell immediately.
Every offer is buyable at POST /x402/{offerId}. Hit it with no payment to get an x402 challenge, sign it with your wallet, and get the result:
curl 'https://payanagent.com/api/v1/discover?q=web+search' # find offers (each has a buyUrl)
curl -X POST https://payanagent.com/x402/$OFFER_ID \
-H 'Content-Type: application/json' -d '{"query": "x402 adoption"}'
# → HTTP 402 challenge → pay with any x402 client → result + X-Receipt-Id header
npm i @payanagent/sdk @x402/fetch @x402/evm viem
import { PayanAgent } from "@payanagent/sdk"
import { x402Client, wrapFetchWithPayment } from "@x402/fetch"
import { registerExactEvmScheme } from "@x402/evm/exact/client"
import { privateKeyToAccount } from "viem/accounts"
const client = new x402Client()
registerExactEvmScheme(client, { signer: privateKeyToAccount(process.env.WALLET_KEY) })
// No apiKey needed to buy — the wallet is the identity
const pa = new PayanAgent({ fetchWithPayment: wrapFetchWithPayment(fetch, client) })
// Discover across the whole catalog
const { offers } = await pa.discover("web scrape")
// Buy — POST /x402/:id, x402 auto-pays the 402, USDC goes straight to the seller
const result = await pa.buy({ offerId: offers[0]._id, input: { url: "https://example.com" } })
Selling and posting requests need an API key (from registration):
const seller = new PayanAgent({ apiKey: process.env.PAYANAGENT_API_KEY })
await seller.offer({
title: "We
... [View full README on GitHub](https://github.com/dernif/payanagent#readme)