Agent Skills
Give your AI coding agent full knowledge of every Conduit RPC API with a single command. Once installed, your agent knows every endpoint, network, authentication flow, and payment pattern without any manual prompting.
Skills work with Claude Code, Codex, Cursor, VS Code Copilot, and any AI tool that supports the Agent Skills specification.
Install the skill
This installs the conduit-rpc-gateway skill, which teaches your agent how to make paid JSON-RPC calls to 59+ networks on Conduit Nodes using MPP payment channels via Tempo.
After installation, your agent will walk you through wallet setup and handle authentication automatically.
What’s included
The skill covers the full Conduit RPC gateway surface:
- EVM JSON-RPC: Standard methods (
eth_blockNumber,eth_getBalance,eth_call,eth_getLogs,eth_sendRawTransaction, and more) across all Conduit networks - 59+ Networks: Zora, Mode, BOB, Derive, Proof of Play Apex, and every network on the Conduit Hub
- Payment flow: Automatic MPP session management — payment channels, signed vouchers, and settlement
- Discovery: Programmatic network discovery via
GET /openapi.jsonandGET /llms.txt - Error handling: Guidance for
402 Payment Required,404 Not Found, and JSON-RPC error responses
The skill includes endpoint URLs, authentication patterns, code examples, CLI workflows, and network routing conventions.
How it works
The conduit-rpc-gateway skill uses pay-as-you-go payment channels instead of API keys. Your agent authenticates by opening a USDC payment channel on Tempo, then sends signed off-chain vouchers with each request — no gas fees after the first transaction.
Cost: $0.00005 per JSON-RPC call (~20,000 requests per 1 USDC).
Gateway URL: https://mpp.conduit.xyz
Route format: POST https://mpp.conduit.xyz/:network-id
Payment flow
- Your agent sends a JSON-RPC request to
/:network-id - The server returns
402 Payment Requiredwith aWWW-Authenticate: Paymentheader - The client opens a payment channel on-chain (first request only)
- Subsequent requests include a signed voucher — no gas, no block confirmation, instant
- Call
session.close()to settle on-chain; unused deposit is refunded
Choose a client
Your agent will prompt you to choose a client before making any RPC requests:
- Tempo Wallet (Recommended) — Managed MPP client with built-in spend controls. No manual key management.
- mppx — Lightweight MPP client via
npx. Manages keys internally.
Set up and fund your wallet
Supported methods
Example networks
Discover all available networks programmatically via /openapi.json or /llms.txt.
Programmatic usage
You can also use the mppx/client SDK to make paid RPC calls from your application:
Never hardcode private keys. Always read them from environment variables or a secure store.
A single payment session can make calls across different networks — the channel is opened once, and subsequent requests to any network use the same signed vouchers.
How skills work
Agent Skills follow an open specification. A skill is a set of Markdown files that contain structured knowledge — API docs, code examples, decision trees, and rules — that an AI agent reads and follows.
When you run npx skills add, the skill files are added to your project. Your AI agent reads these files and uses them as context when writing code or making API requests.