Solana MCP Server
mcp server that allows to do actual actions related to solana first version adds knowledge about RPC methods and how to call them
aldrin-labs
README
Solana MCP Server
A Model Context Protocol (MCP) server that provides comprehensive access to Solana blockchain data through Cline. This server implements a wide range of Solana RPC methods, making it easy to query blockchain information directly through natural language conversations.
<a href="https://glama.ai/mcp/servers/bp6d6p1sp3"><img width="380" height="200" src="https://glama.ai/mcp/servers/bp6d6p1sp3/badge" alt="solana-mcp-server MCP server" /></a>
Features
The server provides 21 essential Solana RPC methods across different categories:
Account & Balance Operations
get_sol_balance
: Get SOL balance for an addressget_token_balance
: Get SPL token balanceget_account_info
: Get account informationget_largest_accounts
: Get largest accounts on network
Block & Transaction Information
get_slot
: Get current slotget_block
: Get block informationget_block_time
: Get block production timeget_transaction
: Get transaction detailsget_recent_blockhash
: Get recent blockhash
Token Operations
get_token_accounts_by_owner
: Get token accounts by ownerget_token_accounts_by_delegate
: Get delegated token accountsget_token_supply
: Get token supply information
System Information
get_epoch_info
: Get current epoch informationget_version
: Get node versionget_health
: Get node health statusget_supply
: Get current supplyget_inflation_rate
: Get inflation rateget_cluster_nodes
: Get cluster node informationget_minimum_balance_for_rent_exemption
: Get minimum rent-exempt balance
Staking & Governance
get_vote_accounts
: Get vote accountsget_leader_schedule
: Get leader schedule
Setup in Cline
- Add the following configuration to your Cline MCP settings file (
~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
on macOS):
{
"mcpServers": {
"solana": {
"command": "cargo",
"args": ["run"],
"cwd": "/path/to/solana-mcp-server",
"env": {
"SOLANA_RPC_URL": "https://api.mainnet-beta.solana.com" // Or your preferred RPC endpoint
}
}
}
}
- Restart Cline to load the new MCP server.
Usage Examples
Once configured, you can interact with the Solana blockchain through natural language in Cline. Here are some example queries:
- "What's the SOL balance of address Gh9ZwEmdLJ8DscKNTkTqPbNwLNNBjuSzaG9Vp2KGtKJr?"
- "Show me the current slot number"
- "Get information about the latest block"
- "What's the current inflation rate?"
- "Show me the token accounts owned by address ..."
Environment Variables
SOLANA_RPC_URL
: (Optional) The Solana RPC endpoint to use. Defaults to "https://api.mainnet-beta.solana.com" if not specified.
Development
Prerequisites
- Rust and Cargo
- Solana CLI tools (optional, for testing)
Building
cargo build
Running
cargo run
License
MIT License
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
MCP Package Docs Server
Facilitates LLMs to efficiently access and fetch structured documentation for packages in Go, Python, and NPM, enhancing software development with multi-language support and performance optimization.
Claude Code MCP
An implementation of Claude Code as a Model Context Protocol server that enables using Claude's software engineering capabilities (code generation, editing, reviewing, and file operations) through the standardized MCP interface.
@kazuph/mcp-taskmanager
Model Context Protocol server for Task Management. This allows Claude Desktop (or any MCP client) to manage and execute tasks in a queue-based system.
Linear MCP Server
Enables interaction with Linear's API for managing issues, teams, and projects programmatically through the Model Context Protocol.
mermaid-mcp-server
A Model Context Protocol (MCP) server that converts Mermaid diagrams to PNG images.
Jira-Context-MCP
MCP server to provide Jira Tickets information to AI coding agents like Cursor

Linear MCP Server
A Model Context Protocol server that integrates with Linear's issue tracking system, allowing LLMs to create, update, search, and comment on Linear issues through natural language interactions.

Sequential Thinking MCP Server
This server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.