-
Notifications
You must be signed in to change notification settings - Fork 39
Description
Server Name
Solana Developer MCP
Server URL/Repository
https://github.com/solana-foundation/solana-mcp-official
Description
The Solana Developer MCP is the official, hosted MCP server from the Solana Foundation that gives AI/IDEs live access to the Solana developer corpus and helper tools (e.g., doc search, Anchor guidance). It’s read-only and optimized for developer workflows (no key handling), so it’s safe to ship as a default MCP in Cursor.
Quick setup guides specifically include Cursor JSON examples.
Solana Developer MCP
What it enables inside Cursor:
- Ask Solana/Anchor questions with up-to-date answers sourced from official docs.
- Generate CPI snippets, query docs by topic, and pull version-specific guidance—without leaving the editor.
- Uses a single HTTPS endpoint (MCP) and optional SSE endpoint (/sse) per the official server.
Requirements Check
- Provides clear installation and configuration instructions
- Focused on developer tools/services (not consumer applications)
- Has appropriate icon or branding available
Configuration JSON
{
"url": "https://mcp.solana.com/mcp"
}
or
{
"command": "npx",
"args": ["mcp-remote", "https://mcp.solana.com/mcp"]
}
Authentication
- This server uses OAuth authentication
Icon
- I've attached a square SVG logo to this issue
Documentation URL (if applicable)
https://solana.com/developers/guides/getstarted/intro-to-ai
Additional Context
Why valuable for developers? Brings up-to-date Solana/Anchor knowledge and helper tools directly into Cursor, reducing context switching and stale answers. It’s a safe default because it’s read-only and maintained by the Solana Foundation.
Solana Developer MCP
Open source & hosted by the ecosystem: The official implementation and landing page live under the Solana Foundation GitHub org.
GitHub
Special considerations: Some clients may prefer SSE; the same service exposes /sse. For Cursor, the URL or the npx mcp-remote config both work (the latter is what Solana’s guide shows).
Submission Guidelines
- Read the Contributing Guidelines
- Searched existing issues and servers to avoid duplicates
- Server provides significant value to developer community