Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.orbitflare.com/llms.txt

Use this file to discover all available pages before exploring further.

OrbitFlare ships a complete agent surface for Solana. Drop a skill into Claude Code or Cursor, wire up the MCP server in any compatible host, script the CLI from a shell, or call the Rust SDK directly. All four talk to the same Shredstream-optimized RPC, gRPC streaming, and Customer API.
Start with the MCP server. It exposes 53 typed tools that cover RPC reads, streaming config, account management, billing, swaps, and on-chain wallet operations, and it works in Claude Desktop, Claude Code, Cursor, Windsurf, VS Code, Gemini CLI, and Codex CLI out of the box.

What’s available

Skills

Drop-in instruction sets that teach Claude Code, Cursor, and Codex how to use OrbitFlare correctly: RPC, streaming, dedicated nodes, trading APIs, CLI, and SDK in one skill.

MCP Server

53 tools across RPC, streaming, billing, swaps, staking, and wallet ops. Works in any MCP-compatible host. Includes auth flows, top-up, and live docs as resources.

CLI

Single binary for streaming, querying, scaffolding, and account management. Every command supports --json so output is parseable in shell scripts and CI/CD.

Rust SDK

Typed Rust clients for RPC, WebSocket, Yellowstone gRPC, and Jetstream. Built-in retry, failover, and reconnection. Reads endpoints from environment variables.

Skill vs MCP vs CLI vs SDK

Pick the surface that matches the workflow:
SurfaceBest forWhen to reach for it
SkillCoding agents (Claude Code, Cursor, Codex) writing OrbitFlare codeYou want the agent to write correct OrbitFlare code (endpoint URLs, gRPC filters, SDK setup) without you fetching docs first
MCPAgents that need to call OrbitFlare directly from chatYou want the agent to query balances, send txs, build streaming configs, or manage your account interactively
CLIShell scripts, CI/CD, terminal automationYou’re writing bash, GitHub Actions, or cron jobs, and --json output composes cleanly with jq and shell pipes
SDKProduction Rust servicesYou’re building a long-running daemon, indexer, or trading bot and want type-safe access with retry/failover baked in
Skills and MCP are complementary. Install both: the skill teaches the agent how OrbitFlare works; the MCP server lets it actually call OrbitFlare without leaving the chat.
The fastest path for a coding agent on Solana:
1

Get an API key

Sign up at orbitflare.com and copy your license key from the Licenses section. The Free plan gives you 10 RPS / 1 TPS forever.
2

Install the skill

npx @orbitflare/skills@latest      # Claude Code (personal)
See Skills for Cursor, Codex, and project-scoped installs.
3

Install the MCP server

Add to your host’s MCP config:
{
  "mcpServers": {
    "orbitflare": {
      "command": "npx",
      "args": ["@orbitflare/mcp@latest"],
      "env": {
        "ORBITFLARE_API_KEY": "your-license-key",
        "ORBITFLARE_NETWORK": "mainnet"
      }
    }
  }
}
See MCP Server for per-host file paths and the Codex CLI TOML variant.
4

Restart your host

Restart Claude Code (or your host of choice) so it picks up the new skill and MCP server.
5

Try a prompt

“Stream pump.fun trades using OrbitFlare Jetstream from Frankfurt”
“What is the SOL balance of Gh9ZwEm…? Then show me the last 20 transactions for that address.”
“Quote 1 SOL → USDC with 0.3% slippage and build me a Yellowstone config to watch the pool.”

Common workflows

GoalSurfaces to use
Build a trading botMCP for prototyping in chat → Rust SDK for the production daemon
Stream real-time dataMCP subscribeTransactions to generate the YAML config → CLI orbitflare stream to run it
Index historical dataSkill to learn getTransactionsForAddress and the archive endpoint → SDK for the indexer
Manage account / billingMCP auth flows + prepareTopUp / confirmTopUp from chat
Quote a swapMCP getSwapQuote (Jupiter Metis routing, auto-resolves SOL/USDC/USDT symbols)
CI / scripted automationCLI with --json flag piped into jq

Source code

Everything is open source: The agent surfaces are derived from the same source of truth: docs.orbitflare.com/llms.txt. Point any agent at that index when you want it to ground answers in the official docs.