MCP server
by sendaifun
Solana Agent: a server for blockchain interactions on Solana, offering asset retrieval, token deployment, wallet managem
Provides comprehensive Solana blockchain integration for AI agents, enabling wallet operations, token management, NFT minting, and transaction execution directly from Claude.
Solana Agent is a community-built MCP server published by sendaifun that provides AI assistants with tools and capabilities via the Model Context Protocol. Solana Agent: a server for blockchain interactions on Solana, offering asset retrieval, token deployment, wallet managem It is categorized under finance, developer tools.
You can install Solana Agent in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
Apache-2.0
Solana Agent is released under the Apache-2.0 license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
Solana Agent is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
Solana Agent is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
Solana Agent is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
Solana Agent is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
We evaluated Solana Agent against two servers with overlapping tools; this profile had the clearer scope statement.
I recommend Solana Agent for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
According to our notes, Solana Agent benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
Solana Agent has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
I recommend Solana Agent for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
Strong directory entry: Solana Agent surfaces stars and publisher context so we could sanity-check maintenance before adopting.
showing 1-10 of 46
<a href="https://cloud.phala.network/features/mcp-hosting/solana-mcp-by-sendai-and-dark" target="_blank" rel="noopener noreferrer" style="display:inline-flex;align-items:center;text-decoration:none;background:#fff;border:1px solid #e5e7eb;border-radius:6px;padding:2px 8px;font-size:16px;font-family:sans-serif;">
<img src="https://raw.githubusercontent.com/Phala-Network/mcp-hosting/refs/heads/main/assets/logs/phala.png" alt="Phala Logo" height="24" style="vertical-align:middle;margin-right:8px;"/>
<span style="color:#222;font-weight:600;">Check on Phala</span>
</a>
A Model Context Protocol (MCP) server that provides onchain tools for Claude AI, allowing it to interact with the Solana blockchain through a standardized interface. This implementation is based on the Solana Agent Kit and enables AI agents to perform blockchain operations seamlessly.
This MCP server extends Claude's capabilities by providing tools to:
The server implements the Model Context Protocol specification to standardize blockchain interactions for AI agents.
# Download the installation script
curl -fsSL https://raw.githubusercontent.com/sendaifun/solana-mcp/main/scripts/install.sh -o solana-mcp-install.sh
# Make it executable and run
chmod +x solana-mcp-install.sh && ./solana-mcp-install.sh --backup
This will start an interactive installation process that will guide you through:
# Install globally
npm install -g solana-mcp
# Or install locally in your project
npm install solana-mcp
git clone https://github.com/sendaifun/solana-mcp
cd solana-mcp
pnpm install
pnpm run build
Create a .env file with your credentials:
# Solana Configuration
SOLANA_PRIVATE_KEY=your_private_key_here
RPC_URL=your_solana_rpc_url_here
OPENAI_API_KEY=your_openai_api_key # OPTIONAL
To add this MCP server to Claude Desktop, follow these steps:
Locate the Claude Desktop Configuration File
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json~/.config/Claude/claude_desktop_config.jsonAdd the Configuration Create or edit the configuration file and add the following JSON:
If you installed via npm (Option 1):
{
"mcpServers": {
"solana-mcp": {
"command": "npx",
"args": ["solana-mcp"],
"env": {
"RPC_URL": "your_solana_rpc_url_here",
"SOLANA_PRIVATE_KEY": "your_private_key_here",
"OPENAI_API_KEY": "your_openai_api_key" // OPTIONAL
},
"disabled": false,
"autoApprove": []
}
}
}
If you built from source (Option 2):
{
"mcpServers": {
"solana-mcp": {
"command": "node",
"args": ["/path/to/solana-mcp/build/index.js"],
"env": {
"RPC_URL": "your_solana_rpc_url_here",
"SOLANA_PRIVATE_KEY": "your_private_key_here",
"OPENAI_API_KEY": "your_openai_api_key" // OPTIONAL
},
"disabled": false,
"autoApprove": []
}
}
}
Restart Claude Desktop After making these changes, restart Claude Desktop for the configuration to take effect.
solana-agent-kit-mcp/
├── src/
│ ├── index.ts # Main entry point
├── package.json
└── tsconfig.json
The MCP server provides the following Solana blockchain tools:
GET_ASSET - Retrieve information about a Solana asset/tokenDEPLOY_TOKEN - Deploy a new token on SolanaGET_PRICE - Fetch price information for tokensWALLET_ADDRESS - Get the wallet addressBALANCE - Check wallet balanceTRANSFER - Transfer tokens between walletsMINT_NFT - Create and mint new NFTsTRADE - Execute token tradesREQUEST_FUNDS - Request funds (useful for testing/development)RESOLVE_DOMAIN - Resolve Solana domain namesGET_TPS - Get current transactions per second on SolanaIf you encounter issues:
Key dependencies include:
Contributions are welcome! Please feel free to submit a Pull Request.
git checkout -b feature/amazing-feature)git commit -m 'Add some amazing feature')git push origin feature/amazing-feature)This project is licensed under the MIT License.
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.