solana-infra-mcp
Provides tools for querying Solana blockchain infrastructure, including RPC health checks, priority fee estimation, epoch info, leader schedule, latency comparison, and keyless transaction submission.
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., "@solana-infra-mcpWhat's the current priority fee estimate?"
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.
solana-infra-mcp
An MCP server that gives your agent Solana-infra awareness — RPC health, priority-fee
estimation, leader schedule, chain state, and latency comparison. Provider-agnostic; point it
at any Solana RPC (rpc edge is the flagship backend). Read-only, no keys
logged, no heavy deps (plain JSON-RPC over fetch).
Tools
Tool | What it answers |
| Is this endpoint healthy? version, current slot, measured request latency |
| What compute-unit price lands right now? p50/p75/p90/max micro-lamports/CU |
| Where are we in the epoch? slot index, block height |
| Who are the next N slot leaders? (time your submissions) |
| How does my endpoint's read latency compare to a baseline? |
| Relay a caller-signed base64 tx and confirm on-chain landing (keyless) |
Related MCP server: SolTracker MCP Server
Add it to Claude
Build it, then register the server. Claude Code:
git clone https://github.com/rpc-edge/solana-infra-mcp && cd solana-infra-mcp
pnpm install && pnpm build
claude mcp add solana-infra -- node "$(pwd)/dist/index.js"Or in a client config (Claude Desktop / others):
{
"mcpServers": {
"solana-infra": {
"command": "node",
"args": ["/abs/path/to/solana-infra-mcp/dist/index.js"],
"env": { "SOLANA_RPC_URL": "https://rpc.rpcedge.com/?api-key=YOUR_KEY" }
}
}
}Skill & plugin
The repo also ships as a Claude Code plugin: .claude-plugin/plugin.json + .mcp.json
(registers the server) + a skill (skills/solana-infra/SKILL.md) that teaches Claude when
to reach for each tool. Because the server is TypeScript, run pnpm install && pnpm build once
so dist/ exists; then install the plugin dir (or just claude mcp add as above).
(An npx-installable published build is on the roadmap.)
Provider config
SOLANA_RPC_URL sets the default endpoint every tool uses (unset → public mainnet-beta).
Point it at rpc edge with your key for the low-latency path; the API key is read from the
environment at runtime and never logged (tools display the host only). Any tool also takes
an explicit url argument to override per call.
Status & roadmap
Working today: six tools (five read-only + keyless submit_transaction), all verified against
live mainnet; a bundled skill + Claude Code plugin.
Next:
yellowstone_sample— a bounded gRPC first-seen/freshness probe (MCP is request/response, so streaming is exposed as a time-boxed sample, not a live subscription).Publish an
npx-installable build; list in MCP registries + awesome-solana-ai.
Develop
pnpm install
pnpm typecheck
pnpm build # -> dist/
pnpm start # runs the stdio serverLicense
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.
Latest Blog Posts
- 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/solana-infra-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server