remote-capable server
The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.
Integrations
Provides tools for interacting with the Solana blockchain, including retrieving current slot numbers, checking account balances, getting detailed account information, displaying keypair information, and transferring SOL between accounts.
Solana MCP 服务器
用于与 Solana 区块链交互的模型-上下文-协议 (Model-Context-Protocol) 服务器。该服务器为常见的 Solana 操作提供简单的 RPC 端点。
特征
- 获取当前插槽号
- 查看账户余额
- 获取详细账户信息
- 显示密钥对信息
- 在账户之间转移 SOL
快速入门
克隆并安装依赖项:
构建工具
将该工具添加到您的 claude_desktop_config.json
用法
问克劳德:
- solana 上最新的插槽是什么?
- 62QXuWZ3WT6ws1ZFxJobVDVXn6bEsiYpLo5yG612U6u3 的余额是多少?
- 这是我的测试密钥 [用密钥替换]。让我们将 0.001 SOL 转移到 [用公共地址替换]
安全说明
仅使用包含少量资金的测试钱包来使用它。
RPC 端点
该服务器通过https://api.mainnet-beta.solana.com
连接到 Solana 的主网。要使用其他网络(例如 devnet 或 testnet),请修改src/index.ts
中的SOLANA_RPC
常量。
You must be authenticated.
为常见的 Solana 区块链操作提供简单 RPC 端点的服务器,允许用户检查余额、获取账户信息以及在账户之间转移 SOL。