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.
This installs the conduit-rpc-gateway skill, which teaches your agent how to make paid JSON-RPC calls to 60+ networks on Conduit Nodes using MPP payment channels via Tempo.
After installation, your agent will walk you through wallet setup and handle authentication automatically.
The skill covers the full Conduit RPC gateway surface:
eth_blockNumber, eth_getBalance, eth_call, eth_getLogs, eth_sendRawTransaction, and more) across all Conduit networksGET /openapi.json and GET /llms.txt402 Payment Required, 404 Not Found, and JSON-RPC error responsesThe skill includes endpoint URLs, authentication patterns, code examples, CLI workflows, and network routing conventions.
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
/:network-id402 Payment Required with a WWW-Authenticate: Payment headersession.close() to settle on-chain; unused deposit is refundedYour agent will prompt you to choose a client before making any RPC requests:
npx. Manages keys internally.Discover all available networks programmatically via /openapi.json or /llms.txt.
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.
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.