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. Add to your MCP config (claudedesktopconfig.json): The server communicates via stdio using the MCP protocol. Capabilities are auto-discovered from the Pylon gateway at startup. 1. Your AI agent calls a Pylon tool (e.g. web
Add this skill
npx mdskills install pylonapi/pylon-mcpComprehensive MCP gateway with 20 useful tools and clear setup, but shell access seems unnecessary
1# Pylon MCP Server23> **The Action Layer for AI Agents** — 20 capabilities, one MCP server, no API keys.45Give Claude, Cursor, or any MCP-compatible client instant access to Pylon's full API gateway. Pay per request via [x402](https://x402.org) micropayments (USDC on Base). No signup. No subscriptions.67## Install89```bash10npx @pylonapi/mcp11```1213## Capabilities (20)1415| Tool | Description | Price |16|------|-------------|-------|17| `screenshot` | Full-page screenshot of any webpage (PNG/JPEG) | $0.005 |18| `web_scrape` | Scrape content from any URL via headless browser (Crawlee + Playwright) | $0.005 |19| `web_extract` | Fast lightweight content extraction (Readability) → markdown/text | $0.003 |20| `web_search` | Search the web — titles, URLs, snippets | $0.003 |21| `pdf_parse` | Extract text and metadata from PDFs | $0.003 |22| `ocr` | Extract text from images (optical character recognition) | $0.005 |23| `translate` | Translate text between 30+ languages with auto-detection | $0.003 |24| `email_validate` | Validate email — format, MX records, SMTP deliverability | $0.002 |25| `email_send` | Send transactional emails (CAN-SPAM compliant) | $0.01 |26| `domain_intel` | WHOIS, DNS records, SSL cert, tech stack detection | $0.005 |27| `dns_lookup` | DNS records for any domain (A, AAAA, MX, CNAME, TXT, etc.) | $0.002 |28| `ip_geolocation` | Geographic location of any IP address | $0.002 |29| `qr_code` | Generate QR code PNG from text/URL | $0.002 |30| `image_resize` | Resize, crop, convert images (PNG, JPEG, WebP) | $0.003 |31| `md_to_pdf` | Render markdown as styled PDF | $0.003 |32| `html_to_pdf` | Render HTML as PDF (full Chromium engine) | $0.005 |33| `document_generation` | Generate PDFs from templates (invoice, receipt, report, letter) | $0.005 |34| `file_storage` | Upload files, get public URL (up to 50MB, 30-day expiry) | $0.005 |35| `url_shortener` | Shorten URLs with click tracking, custom slugs | $0.002 |36| `data_formatter` | Convert between JSON, CSV, XML, YAML | $0.002 |3738## Setup3940### Claude Desktop / Cursor4142Add to your MCP config (`claude_desktop_config.json`):4344```json45{46 "mcpServers": {47 "pylon": {48 "command": "npx",49 "args": ["-y", "@pylonapi/mcp"]50 }51 }52}53```5455### Standalone5657```bash58npx @pylonapi/mcp59```6061The server communicates via stdio using the MCP protocol. Capabilities are auto-discovered from the Pylon gateway at startup.6263## How It Works64651. Your AI agent calls a Pylon tool (e.g. `web_scrape`)662. The MCP server routes the request to `api.pylonapi.com/do`673. Payment is handled automatically via x402 (USDC on Base)684. Results are returned to your agent6970No 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.7172## x402 Payments7374All requests are paid via the [x402 protocol](https://x402.org) — HTTP-native micropayments on Base (L2). Each call costs fractions of a cent in USDC.7576**Live on Base Mainnet.**7778## Links7980- **Gateway:** [api.pylonapi.com](https://api.pylonapi.com)81- **Website:** [pylonapi.com](https://pylonapi.com)82- **Protocol:** [x402.org](https://x402.org)83- **GitHub:** [github.com/pylon-apis/pylon](https://github.com/pylon-apis/pylon)84- **npm:** [@pylonapi/mcp](https://www.npmjs.com/package/@pylonapi/mcp)8586## License8788MIT89
Full transparency — inspect the skill content before installing.