rpcedge-mcp
OfficialProvides tools for interacting with Solana blockchain infrastructure, including health checks, priority fee estimates, leader schedules, epoch info, and submission of signed transactions via the rpc edge relay.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@rpcedge-mcpCheck my RPC health and estimate priority fees."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
rpcedge-toolkit
Ship Solana trading bots and agents without wiring endpoints by hand.
Open-source SDK · CLI · MCP for rpc edge - JSON-RPC, priority fees, leader schedule, health probes, and the transaction sender. One env var. Keys never in prompts.
export RPCEDGE_KEY=your-uuid-from-app # https://app.rpcedge.com/signup
npx rpcedge@latest doctor # green in under a minuteWhy this exists
Most Solana bots start the same way: paste a URL, forget the WebSocket, mis-auth gRPC, send txs to the public RPC, then debug auth at 2am.
This toolkit collapses that path:
Job | Without toolkit | With toolkit |
Prove the key works | hand-written curl |
|
Wire TypeScript | raw URL strings |
|
Agent / Claude / Cursor | docs copy-paste |
|
Land a signed tx | guess the right path |
|
gRPC freshness probe | hand-roll a stream |
|
rpc edge is co-located Solana infra (RPC, Yellowstone gRPC, sender) for trading bots - self-serve from $249/mo USDC, Frankfurt / FR13. This repo is the open DX layer on top. Measure claims yourself with solbench - we do not invent latency heroes here.
Related MCP server: Solana MCP Demo
Pick your path
1. Human - prove the endpoint (60s)
# Get a key: https://app.rpcedge.com/signup
export RPCEDGE_KEY=your-uuid-key
npx rpcedge@latest doctor
npx rpcedge@latest health --json
npx rpcedge@latest fee # p50/p75/p90 micro-lamports/CU
npx rpcedge@latest grpc-sample # time-boxed Yellowstone slot sampleSave the key for later sessions:
npx rpcedge@latest config set-key "$RPCEDGE_KEY"
npx rpcedge@latest whoamiCTA: no account yet? → Sign up · rpc edge dashboard
2. TypeScript bot - first getSlot
pnpm add rpcedge-sdk
# optional: pnpm add @solana/web3.jsimport { RpcEdge } from "rpcedge-sdk";
const edge = await RpcEdge.fromEnv(); // RPCEDGE_KEY or config file
console.log(await edge.getSlot()); // commitment: processed by default
console.log((await edge.health()).summary);
console.log((await edge.priorityFees()).summary);
// Ecosystem Connection when you need it
const conn = await edge.connection();
// Yellowstone: edge.grpcHost + edge.grpcMetadata (x-api-key / Bearer)3. Coding agent - MCP in one line
export RPCEDGE_KEY=your-uuid-key
claude mcp add rpcedge -- npx rpcedge-mcp@latest
# also works with Cursor / Codex / any stdio MCP hostClaude Code plugin (this repo ships .claude-plugin/ + skills/rpcedge):
# from Claude Code: add the marketplace / install the plugin, then set RPCEDGE_KEY
# skill teaches when to call doctor vs fees vs yellowstone_sample vs relay submitAsk: "Check my RPC health and estimate priority fees."
Tool | What the agent can do |
| Key + health checklist with next actions |
| Slot, solana-core, getSlot RTT from this host |
| Time-boxed gRPC slot sample (needs key) |
| p50/p75/p90/max micro-lamports per CU |
| Epoch progress + leader timing |
| getSlot p50 vs baseline (not a landing metric) |
| Relay caller-signed base64 tx + confirm |
| Canonical endpoints + auth (no secrets) |
Signing is always upstream. Submit accepts only fully signed transactions. Keys never appear in tool text.
Machine integration guide: rpcedge.com/skills.md · Agents
Packages
Package | npm | Use when |
Shell, CI, doctor, ops | ||
TypeScript bots / services | ||
Claude / Cursor / agents | ||
Shared internals (usually transitive) |
CLI reference
npx rpcedge@latest doctor
npx rpcedge@latest health --json
npx rpcedge@latest slot
npx rpcedge@latest fee
npx rpcedge@latest epoch
npx rpcedge@latest leaders --count 8
npx rpcedge@latest latency # this host's getSlot p50 - not landing
npx rpcedge@latest call getEpochInfo '[]'
npx rpcedge@latest send --raw <base64> # relay by default; --via rpc
npx rpcedge@latest config set-key <uuid>
npx rpcedge@latest whoami
npx rpcedge@latest open signupGlobal flags: --json · --key <uuid> · --url <rpcUrl>
Config (highest wins)
CLI
--key/--urlor SDK optionsSOLANA_RPC_URL/SOLANA_WS_URL(any provider)RPCEDGE_KEY→ defaults tohttps://rpc.rpcedge.com~/.config/rpcedge/config.json(mode0600)Public mainnet-beta (demo only - not production)
Optional: RPCEDGE_RELAY_URL, YELLOWSTONE_GRPC_URL / RPCEDGE_GRPC_HOST
When to use rpc edge
Good fit: trading bots, copy-trading, DLMM, market-making, arb/liquidations, on-chain agents that need low-latency Solana RPC/gRPC/sender and self-serve USDC billing.
Not a fit: free hobby / learning only (public RPC is fine), multi-chain one-vendor needs, pure archive dumps.
Pricing: rpcedge.com/pricing · Docs: docs.rpcedge.com · Benchmarks: rpcedge.com/benchmarks
Security
Never commit API keys or put them in model prompts
Config file is written mode
0600Logs and MCP output redact
?key=and mask key materialSubmit tools are keyless for signing - sign upstream only
Report security issues privately to the maintainers
Related OSS
Repo | Purpose |
Provider-agnostic Solana infra MCP | |
Paper copy-watch reference (doctor → logsSubscribe → paper log) | |
Honest RPC/gRPC latency harness | |
Rust transaction relay client |
Develop
pnpm install && pnpm build && pnpm test
pnpm e2e # CLI + SDK + MCP live + publish dry-run
RPCEDGE_KEY=… pnpm e2e # production endpoint path
pnpm e2e:registry # npm view + npx smokeNode ≥ 20 · pnpm 11 · Publish: docs/PUBLISH.md · Listings: docs/DISTRIBUTION.md
License
MIT © 0xNyk · product by Polaris Labs / rpc edge
Next step: get a key → npx rpcedge@latest doctor
This server cannot be installed
Maintenance
Related MCP Servers
Alicense-qualityCmaintenanceBlockchain RPC via DRPC. Exposes eth_call, eth_getBalance, gas estimation, and other JSON-RPC methods as MCP tools across 100+ blockchainsLast updated22MIT- Alicense-qualityDmaintenanceProvides basic Solana RPC methods and prompts for AI models to interact with the Solana blockchain. Enables developers to fetch balances, account info, and transactions through natural language.Last updated1MIT
- Alicense-qualityCmaintenanceEnables interaction with Kaspa blockchain nodes via RPC, providing tools for querying node info, block data, addresses, balances, UTXOs, and mempool transactions.Last updated1MIT
- AlicenseAqualityAmaintenanceAgent-safe management of independent Solana validators and RPC nodes over MCP and CLI: Solana-aware status, in-place upgrades, and DNS failover. Every change is dry-run by default, policy-gated, and audited, and it never touches keypairs.Last updated15Apache 2.0
Related MCP Connectors
Native Solana staking for AI agents. 26 MCP tools, one-shot signing, webhooks.
Solana MCP for wallets, trades, markets, PnL, transfers, onchain data, signable swaps and API tools.
Intelligence marketplace on Solana — 86 tools, 168+ endpoints, per-call USDC.
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/rpc-edge/rpcedge-toolkit'
If you have feedback or need assistance with the MCP directory API, please join our Discord server