- Home
- MCP servers
- Solana MCP Explorer
Solana MCP Explorer
- typescript
5
GitHub Stars
typescript
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": {
"notorious-d-e-v-solana-mcp-explorer": {
"command": "npx",
"args": [
"-y",
"solana-mcp-explorer@latest"
]
}
}
}Solana MCP Explorer lets you discover and start integrating Solana MCP Servers by adding them to your MCP Host. It provides a convenient way to navigate the Solana MCP network and bring MCP functionality into your setup with minimal configuration.
How to use
To use Solana MCP Explorer, add the MCP Server entry to your MCP Host configuration. This enables your host to discover and connect to the Solana MCP Server you specify, so you can navigate and work with MCP servers within the Solana ecosystem.
How to install
Prerequisites: You need Node.js and npm or npx available on your system. Ensure you have a working MCP Host setup where you can reference MCP Servers.
Add the Solana MCP Explorer configuration to your MCP Host using the example below. This runs the MCP Explorer package via npx.
{
"mcpServers": {
"solana-mcp_explorer": {
"command": "npx",
"args": [
"-y",
"solana-mcp-explorer@latest"
]
}
}
}
Notes
This MCP Server entry uses a local, stdio-based runtime driven by npx to fetch and run the latest Solana MCP Explorer package. If you prefer a different runtime, you can adapt the command and arguments accordingly, but keep the same structure.