Featured

Deploy OpenClaw in 60 seconds β€” 20% off logoDeploy OpenClaw in 60 seconds β€” 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger β†’
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger β†’
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free β†’
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free β†’
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data β€” no proxies, no parsers, no maintenance.

Start building free β†’
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it β€” secured from day one.

Get it set up for you β†’
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free β†’
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here β†’

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

ExpertVagabond/solana-mcp-server MCP server](https://glama.ai/mcp/servers/ExpertVagabond/solana-mcp-server/badges/score.svg)](https://glama.ai/mcp/servers/ExpertVagabond/solana-mcp-server) πŸ“‡ ☁️ - 25 tools for Solana blockchain β€” wallet management, SOL/SPL...

README.md

solana-mcp-server

![npm version](https://www.npmjs.com/package/solana-mcp-server) ![License: MIT](https://opensource.org/licenses/MIT) ![Node](https://nodejs.org) ![Tools](https://modelcontextprotocol.io)

Full Solana blockchain MCP server. 25 tools for wallet management, SPL token operations, DeFi, staking, and network queries. Built on @solana/web3.js and @solana/spl-token with Anchor support.

The most actively maintained Solana MCP. Covers the complete SPL token lifecycle (create, mint, burn, freeze, thaw, delegate, authority management) that competitors skip.

Install

npx solana-mcp-server

Or install globally:

npm install -g solana-mcp-server
solana-mcp-server

Configure

Add to your MCP config (claude_desktop_config.json or ~/.mcp.json):

{
  "mcpServers": {
    "solana": {
      "command": "npx",
      "args": ["-y", "solana-mcp-server"],
      "env": {
        "SOLANA_RPC_URL": "https://api.mainnet-beta.solana.com"
      }
    }
  }
}

Tools (25)

Wallet Management (4)

| Tool | Description | Key Params | |------|-------------|------------| | create_wallet | Create a new Solana keypair (in-memory only) | -- | | import_wallet | Import from a base58-encoded private key | privateKey | | list_wallets | List all wallets in the current session | -- | | get_balance | Get SOL balance for any address | address |

SPL Token Operations (10)

| Tool | Description | Key Params | |------|-------------|------------| | create_spl_token | Create a new SPL token with custom decimals | walletName, decimals | | mint_tokens | Mint tokens to any address | walletName, tokenMint, amount | | burn_tokens | Burn tokens from an account | walletName, tokenMint, amount | | freeze_account | Freeze a token account | walletName, tokenMint, accountAddress | | thaw_account | Unfreeze a token account | walletName, tokenMint, accountAddress | | set_token_authority | Change token authority (mint, freeze, owner, close) | walletName, tokenMint, authorityType | | get_token_supply | Total supply and metadata for a token | tokenMint | | close_token_account | Close an account and reclaim rent | walletName, tokenAccount | | approve_delegate | Approve a delegate for token transfers | walletName, tokenAccount, delegate, amount | | revoke_delegate | Revoke delegate approval | walletName, tokenAccount |

Transfers (3)

| Tool | Description | Key Params | |------|-------------|------------| | transfer_sol | Transfer SOL between wallets | from, to, amount | | transfer_tokens | Transfer SPL tokens | from, to, tokenMint, amount | | airdrop_sol | Request SOL airdrop (devnet/testnet only) | address, amount |

Account Queries (4)

| Tool | Description | Key Params | |------|-------------|------------| | get_account_info | Detailed account information | address | | get_transaction | Transaction details by signature | signature | | create_token_account | Create an associated token account | walletName, tokenMint | | get_token_accounts | List all token accounts for a wallet | address |

Token Data (1)

| Tool | Description | Key Params | |------|-------------|------------| | get_token_balance | SPL token balance for a specific account | address, tokenMint |

Network (3)

| Tool | Description | Key Params | |------|-------------|------------| | switch_network | Switch between mainnet, devnet, testnet, localhost | network | | get_network_info | Current network status and info | -- | | get_recent_blockhash | Recent blockhash for transaction building | -- |

Why This One?

  • Complete SPL token lifecycle. Create, mint, burn, freeze, thaw, set authority, delegate, close -- 10 token tools covering every operation. Competitors stop at create/transfer.
  • Production-ready infrastructure. Lazy connection initialization (no startup timeouts), 10-second network call timeouts, comprehensive error handling, and Smithery deployment support.
  • Anchor integration. Built with @coral-xyz/anchor support for interacting with Anchor programs alongside raw SPL token operations.

Networks

| Network | Endpoint | |---------|----------| | mainnet | https://api.mainnet-beta.solana.com | | devnet | https://api.devnet.solana.com | | testnet | https://api.testnet.solana.com | | localhost | http://127.0.0.1:8899 |

Security

  • Private keys stored in memory only -- never persisted to disk
  • Keys cleared on process exit
  • All inputs validated with Zod schemas

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | SOLANA_RPC_URL | No | Solana RPC endpoint (default: mainnet) |

Development

git clone https://github.com/ExpertVagabond/solana-mcp-server.git
cd solana-mcp-server
npm install
npm run build
npm start
npm test              # Basic functionality tests
npm run type-check    # TypeScript type checking
npm run lint          # ESLint
npm run quality       # Full quality check (lint + types + tests)

License

MIT -- Purple Squirrel Media

See related servers & alternatives β†’

Related MCP servers

Browse all β†’

Related guides

Hand-picked reading to help you choose and use Finance & Payments servers.