Pylon MCP Server

February 19, 2026 · View on GitHub

The Action Layer for AI Agents — 20 capabilities, one MCP server, no API keys.

Give Claude, Cursor, or any MCP-compatible client instant access to Pylon's full API gateway. Pay per request via x402 micropayments (USDC on Base). No signup. No subscriptions.

Install

npx @pylonapi/mcp

Capabilities (20)

ToolDescriptionPrice
screenshotFull-page screenshot of any webpage (PNG/JPEG)$0.005
web_scrapeScrape content from any URL via headless browser (Crawlee + Playwright)$0.005
web_extractFast lightweight content extraction (Readability) → markdown/text$0.003
web_searchSearch the web — titles, URLs, snippets$0.003
pdf_parseExtract text and metadata from PDFs$0.003
ocrExtract text from images (optical character recognition)$0.005
translateTranslate text between 30+ languages with auto-detection$0.003
email_validateValidate email — format, MX records, SMTP deliverability$0.002
email_sendSend transactional emails (CAN-SPAM compliant)$0.01
domain_intelWHOIS, DNS records, SSL cert, tech stack detection$0.005
dns_lookupDNS records for any domain (A, AAAA, MX, CNAME, TXT, etc.)$0.002
ip_geolocationGeographic location of any IP address$0.002
qr_codeGenerate QR code PNG from text/URL$0.002
image_resizeResize, crop, convert images (PNG, JPEG, WebP)$0.003
md_to_pdfRender markdown as styled PDF$0.003
html_to_pdfRender HTML as PDF (full Chromium engine)$0.005
document_generationGenerate PDFs from templates (invoice, receipt, report, letter)$0.005
file_storageUpload files, get public URL (up to 50MB, 30-day expiry)$0.005
url_shortenerShorten URLs with click tracking, custom slugs$0.002
data_formatterConvert between JSON, CSV, XML, YAML$0.002

Setup

Claude Desktop / Cursor

Add to your MCP config (claude_desktop_config.json):

{
  "mcpServers": {
    "pylon": {
      "command": "npx",
      "args": ["-y", "@pylonapi/mcp"]
    }
  }
}

Standalone

npx @pylonapi/mcp

The server communicates via stdio using the MCP protocol. Capabilities are auto-discovered from the Pylon gateway at startup.

How It Works

  1. Your AI agent calls a Pylon tool (e.g. web_scrape)
  2. The MCP server routes the request to api.pylonapi.com/do
  3. Payment is handled automatically via x402 (USDC on Base)
  4. Results are returned to your agent

No API keys to manage. No billing dashboards. No rate limit negotiations. The x402 protocol handles authentication via payment — if you can pay, you can call.

x402 Payments

All requests are paid via the x402 protocol — HTTP-native micropayments on Base (L2). Each call costs fractions of a cent in USDC.

Live on Base Mainnet.

License

MIT