- Home
- MCP servers
- Solana Chad
Solana Chad
- rust
5
GitHub Stars
rust
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"rayato159-sol-chad-mcp": {
"command": "PATH-TO/sol-chad-mcp/target/release/examples/sol_chad_mcp.exe",
"args": []
}
}
}You can run a Solana MCP Server that lets an LLM interact with your Solana wallet and perform actions like checking balances, prices, and blocks using natural language. This server exposes a set of endpoints you can call from an MCP client, enabling automated wallet monitoring and simple trading interactions through chat.
How to use
Use an MCP client to connect to the Solana Chad MCP server. The server exposes a set of capabilities you can invoke through natural language queries. For example you can ask it to check the SOL price, confirm wallet balance, or fetch block data. You can also request actions like selling a portion of SOL if price movement criteria are met. The client translates your natural language requests into the available MCP endpoints and executes them through the Solana RPC interface.
How to install
Prerequisites: ensure you have Rust and Cargo installed on your machine.
Build the project using the release profile and the example for SOL Chad MCP.
cargo build --release --example solana_chad_mcp
Additional setup for MCP client integration
On Windows, configure the MCP client to load the Solana Chad MCP server by adding the following to your client configuration file.
{
"mcpServers": {
"solana": {
"command": "PATH-TO/sol-chad-mcp/target/release/examples/sol_chad_mcp.exe",
"args": []
}
}
}
Available tools
get_health
Check if the Solana RPC endpoint is healthy.
get_price
Fetch the real-time SOL price.
get_balance
Query the SOL balance of a given wallet address.
get_block
Retrieve information for a specific block by its number.
get_block_height
Get the latest block height from the Solana network.
get_slot
Return the latest slot number.
get_macd_chart
Return a MACD chart for SOL price history.
get_rsi_chart
Return an RSI chart for SOL price history.