Solana Blockchain
About
Enables secure interaction with the Solana blockchain for checking wallet balances, retrieving blockchain information, and executing token transfers through RPC endpoints and keypair-based authentication.
Details
- Author
- grandbusta
- Repository
- Grandbusta/solana-mcp
- GitHub stars
- 10
- Categories
- Productivity, Design, AI, Infrastructure, Frontend, Knowledge Base, Developer Tools
Jump to
- Get latest slot
- Get wallet address
- Get wallet balance
- Transfer SOL
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
Solana BlockchainCommand (node, npx, python, etc.)npxArguments-
Argument 1
-y -
Argument 2
@highlight/mcp-server
Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
-
Argument 1
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
To install Solana MCP for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @Grandbusta/solana-mcp --client claude
1. Clone the repository
git clone https://github.com/Grandbusta/solana-mcp.git
2. Install dependencies
npm install
3. Build the project
npm run build
4. Create a keypair file
Create a file named keypair.json anywhere you want and copy your private key into it. Check the example-keypair.json file for an example.
get-latest-slot
Returns the latest slot number.
get-wallet-address
Returns the wallet address.
get-wallet-balance
Returns the wallet balance in SOL, Lamports, and USD.
transfer
Transfers SOL to a recipient address.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"solana blockchain": {
"env": {},
"args": [
"-y",
"@highlight/mcp-server"
],
"command": "npx"
}
}
}
Linux
{
"env": [],
"args": [
"-y",
"@highlight/mcp-server"
],
"command": "npx"
}
Macos
{
"env": [],
"args": [
"-y",
"@highlight/mcp-server"
],
"command": "npx"
}
Windows
{
"env": [],
"args": [
"/c",
"npx",
"-y",
"@highlight/mcp-server"
],
"command": "cmd"
}
Solana MCP Server 🌱
A MCP server to interact with the Solana blockchain with your own private key.
📖 Table of Contents
- ✨Features - ⚙️Setup - Integration with Cursor - 🛠️Available Tools - 🔖License✨ Features
- Get latest slot
- Get wallet address
- Get wallet balance
- Transfer SOL
⚙️ Setup
Installing via Smithery
To install Solana MCP for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @Grandbusta/solana-mcp --client claude
Manual Setup
1. Clone the repository
git clone https://github.com/Grandbusta/solana-mcp.git
2. Install dependencies
npm install
3. Build the project
npm run build
4. Create a keypair file
Create a file named keypair.json anywhere you want and copy your private key into it. Check the example-keypair.json file for an example.
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.

