Model Context Protocol Server for Solana Client

local-only server

The server can only run on the client’s local machine because it depends on local resources.

Integrations

  • Provides access to Solana blockchain data and functionality through an MCP server for Claude, enabling operations like retrieving account balances, transaction data, block information, and other Solana network interactions

Solanaクライアント用モデルコンテキストプロトコルサーバー

Smithery経由でインストール

Smithery経由で Claude Desktop 用の mcp-solana を自動的にインストールするには:

npx -y @smithery/cli install @tywenk/mcp-solana --client claude

サーバーのインストール:

git clone git@github.com:tywenk/mcp-sol.git cd mcp-sol uv sync mcp install src/server.py

ClaudeデスクトップのJSON設定ファイル( /Users/{user}/Library/Application Support/Claude uv Macの場合))が以下のようになっていることを確認してください。uvバイナリとパスはすべて絶対パスであることに注意してください。

{ "globalShortcut": "Alt+Space", "mcpServers": { "Solana Client": { "command": "/Users/tywen/.local/bin/uv", "args": [ "--directory", "/Users/tywen/Developer/mcp-sol", "run", "--with", "mcp", "mcp", "run", "/Users/tywen/Developer/mcp-sol/src/server.py" ] } } }

ツールのリスト:

get_balance get_transaction get_block get_block_height get_block_time get_blocks get_cluster_nodes get_epoch_info get_epoch_schedule get_genesis_hash get_identity get_inflation_governor get_inflation_rate get_largest_accounts get_latest_blockhash get_minimum_balance_for_rent_exemption get_program_accounts get_recent_performance_samples get_signature_statuses get_slot get_slot_leader get_supply get_token_account_balance get_token_largest_accounts get_transaction_count get_version get_vote_accounts is_connected get_block_commitment confirm_transaction get_account_info get_fee_for_message get_first_available_block get_inflation_reward get_leader_schedule get_minimum_ledger_slot get_multiple_accounts get_signatures_for_address get_token_accounts_by_delegate get_token_accounts_by_owner get_token_supply request_airdrop send_transaction validator_exit
-
security - not tested
A
license - permissive license
-
quality - not tested

Solana ブロックチェーンとのやり取りを可能にし、残高、トランザクションの詳細、ブロック情報の取得、トランザクションの送信など、40 を超える Solana RPC メソッドへのアクセスを提供するサーバーです。

  1. Installing via Smithery
    ID: jzlk321atf