dRPC Agent Skills
OfficialDRPC 에이전트 스킬
AI 코딩 에이전트에게 RPC를 통해 100개 이상의 블록체인에 접근할 수 있는 권한을 부여하세요. 즉시 작동하며, 재시작이나 설정 파일 수정이 필요 없습니다. 지갑이 있는 에이전트는 x402를 통해 API 키를 자동으로 획득하므로 가입이 필요 없습니다. 가이드 레시피, 오류 처리, 200개 이상의 네트워크를 지원합니다.
왜 DRPC인가요? 귀하의 요청은 여러 공급자에 걸쳐 라우팅되는 탈중앙화 게이트웨이를 통과합니다. 하나가 다운되면 다른 하나가 처리합니다. 응답은 합의 검증을 거치므로 단일 노드로부터 잘못된 데이터를 받을 염려가 없습니다.
무엇을 할 수 있나요?
평이한 영어로 프롬프트를 입력하세요. 에이전트가 어떤 RPC 호출을 해야 할지 파악합니다.
사용 사례 | 예시 프롬프트 |
DeFi 포트폴리오 | "Ethereum, Arbitrum, Base 전반의 내 지갑 잔액을 가져와줘" |
가스 최적화 | "지금 모든 L2 네트워크의 가스 가격을 비교해줘" |
트랜잭션 추적 | "Optimism에서 트랜잭션 0xabc...가 확인되었는지 확인해줘" |
스마트 컨트랙트 읽기 | "Base에서 USDC 컨트랙트의 totalSupply를 읽어줘" |
고래 관찰 | "Ethereum에서 이 주소의 마지막 10개 트랜잭션을 가져와줘" |
크로스체인 분석 | "Arbitrum, Base, Optimism 전반의 TVL 관련 컨트랙트 데이터를 비교해줘" |
Related MCP server: x402 On-Chain Data MCP Server
설치
지원 플랫폼: Claude Code · Gemini CLI · Cursor · Codex · Windsurf · Cline · OpenClaw
에이전트에 지갑이 있다면 x402를 통해 API 키를 자동으로 획득합니다(가입 불필요). 그렇지 않은 경우 drpc.org에서 무료 키를 받으세요. 그런 다음 플랫폼에 맞는 스킬을 설치하세요:
Claude Code
claude plugins marketplace add drpcorg/drpc-agent-skills
claude plugins install drpc-agent-skillsGemini CLI
gemini extensions install https://github.com/drpcorg/drpc-agent-skillsCodex
git clone https://github.com/drpcorg/drpc-agent-skills.git
ln -s $(pwd)/drpc-agent-skills/skills/drpc-rpc ~/.agents/skills/drpc-rpcCursor
git clone https://github.com/drpcorg/drpc-agent-skills.git
ln -s $(pwd)/drpc-agent-skills/skills/drpc-rpc .cursor/skills/drpc-rpcWindsurf
git clone https://github.com/drpcorg/drpc-agent-skills.git
ln -s $(pwd)/drpc-agent-skills/skills/drpc-rpc .windsurf/skills/drpc-rpcCline
git clone https://github.com/drpcorg/drpc-agent-skills.git
ln -s $(pwd)/drpc-agent-skills/skills/drpc-rpc .cline/skills/drpc-rpcOpenClaw
git clone https://github.com/drpcorg/drpc-agent-skills.git
ln -s $(pwd)/drpc-agent-skills/skills/drpc-rpc ~/.openclaw/skills/drpc-rpc작동 방식
다음과 같이 질문하세요:
"Ethereum에서 vitalik.eth의 ETH 잔액을 가져와줘"
"모든 L2 네트워크의 가스 가격을 비교해줘"
에이전트가 스킬 파일을 읽고, 올바른 RPC 메서드를 선택하여 DRPC를 호출한 뒤 결과를 반환합니다. 사용자가 별도로 작성할 상용구 코드는 없습니다.
You ask → Agent reads skill → Calls DRPC API → Returns blockchain data자동으로 선택되는 세 가지 모드:
첫 세션: x402 지갑 서명을 통해 API 키를 획득(또는 사용자에게 요청)하고, 직접 HTTP를 통해 요청을 실행하며(재시작 불필요), 향후 세션을 위해 MCP를 구성합니다.
후속 세션: 네이티브 MCP 도구를 사용합니다(더 빠르고 통합됨).
오류 처리: 결제 한도, 속도 제한을 인식하고 복구 방법을 안내합니다.
x402: 자동 API 키 획득
이 스킬은 HTTP를 통한 기계 간 결제를 위해 Coinbase가 만든 오픈 표준인 x402 결제 프로토콜을 구현합니다. 서버가 402 Payment Required를 반환하면, 클라이언트는 무엇을 지불해야 하는지 정확히 파악하고 결제에 서명하여 액세스 권한을 얻습니다. 계정, 대시보드, 키 복사/붙여넣기가 필요 없습니다.
우리의 구현은 표준 흐름 위에 무료 바로가기를 추가합니다:
Agent has wallet?
│
├─ yes → SIWE sign-in (EIP-4361) ─── wallet already linked? ─── yes → API key (free, instant)
│ │
│ no
│ ↓
│ Pay 5 USDC (EIP-3009 signature, settled on Base)
│ ↓
│ API key + tx receipt
│
└─ no → Ask user for key (fallback to drpc.org free tier)SIWE 우선 확인 -- 에이전트가 지갑 소유권을 증명하는 메시지에 서명합니다. 해당 지갑이 이미 DRPC 계정과 연결되어 있다면 비용 없이 즉시 API 키가 반환됩니다.
필요할 때만 결제 -- 새 지갑의 경우, 에이전트가 Base에서 USDC에 대한 EIP-3009
transferWithAuthorization에 서명합니다. 서버가 온체인에서 이를 정산하고 키를 반환합니다.우아한 폴백 -- 지갑이 없나요? 에이전트가 기존 방식으로 사용자에게 키를 요청합니다.
모든 서명은 오프체인에서 이루어집니다(사용자의 가스 비용 없음). 정산은 서버 측에서 발생합니다.
curl 예시가 포함된 전체 프로토콜 레시피는 x402-auto-key.md를 참조하세요.
스킬 구성 요소
파일 | 목적 |
진입점 — 전송 감지, 쿼리 유형별 라우팅 | |
플랫폼별 MCP 구성 | |
첫 세션을 위한 직접 HTTP 호출 (MCP 불필요) | |
매개변수를 포함한 16개 MCP 도구 전체 | |
단일 네트워크 레시피 | |
크로스체인 레시피 | |
x402를 통한 자동 API 키 획득 (SIWE + EIP-3009) | |
오류 코드, 결제 오류, 복구 패턴 |
MCP 도구
도구 | 설명 |
| 지원되는 200개 이상의 모든 네트워크 |
| 네트워크별 RPC 메서드 |
| 네트워크 세부 정보 (체인 ID, 통화, 탐색기) |
| 네이티브 토큰 잔액 |
| 번호 또는 태그별 블록 |
| 해시별 블록 |
| 트랜잭션 세부 정보 |
| 상태 및 로그가 포함된 영수증 |
| 이벤트 로그 쿼리 |
| 스마트 컨트랙트 읽기 |
| 현재 가스 가격 |
| 가스 추정 |
| 컨트랙트 바이트코드 |
| 주소에 대한 논스(Nonce) |
| 임의의 JSON-RPC 메서드 |
| 여러 호출 일괄 처리 |
지원 네트워크
Ethereum, Arbitrum, Optimism, Base, Polygon, BNB Chain, Avalanche, zkSync, Linea, Scroll, Mantle, Fantom, Gnosis, Celo, Moonbeam, Harmony, Aurora, Metis, Boba, Cronos, Klaytn, Solana, Bitcoin, NEAR, Cosmos, Starknet 및 기타 다수.
기여
버그를 발견하셨나요? 누락된 체인이 있나요? 이슈를 열거나 PR을 보내주세요.
별점은 발견 가능성에 도움이 됩니다. 이 스킬이 시간을 절약해 주었다면 별점을 남겨주세요.
라이선스
MIT
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
USDC-gated Base JSON-RPC: free 10 req/min, $0.50 per 10k. Failover, cache, /mcp, ledger.
Abstraxn: public Web3 MCP server for read-only chain data and pay-per-call relays.
Hosted MCP gateway for Web3 infra discovery across 20+ networks via one endpoint.
Safety-first EVM and Bitcoin RPC tools for balances, contracts, blocks, and transactions
Related MCP Servers
- AlicenseNot gradedqualityAmaintenanceBridges Ethereum JSON-RPC queries from Geth nodes to the Model Context Protocol ecosystem, exposing blockchain operations as MCP tools. Enables AI models and applications to securely interact with Ethereum data including blocks, transactions, balances, and advanced debug functions through schema-validated access.873MIT
- FlicenseAqualityDmaintenancePay-per-call MCP server for on-chain blockchain data including wallet profiles, token metrics, protocol TVL, and gas prices.5-
- AlicenseAqualityCmaintenanceEnables MCP clients to interact with over 31 blockchain chains through the MoltNode RPC gateway, providing tools for chain listing, RPC calls, block numbers, and native balance queries without API keys or setup.4MIT
- AlicenseAqualityAmaintenanceBlockchain JSON-RPC on 23 EVM chains for AI agents — Ethereum, Base, Arbitrum, plus young chains like Robinhood Chain, Plasma and Ink. Free reads with no key; heavy methods (eth_getLogs, trace, debug) via a free API key or x402 USDC pay-per-call.12121MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/drpcorg/drpc-agent-skills'
If you have feedback or need assistance with the MCP directory API, please join our Discord server