drio
Open app

solana-docs-server MCP Server

Source

solana docs

Catalog onlyCatalog onlySTDIO

Overview

Solana Docs MCP Server is a TypeScript-based server that implements a simple notes system, demonstrating core MCP concepts by providing resources for text notes with URIs and metadata.

To use the server, install the dependencies, build the server, and configure it with Claude Desktop by adding the server config to the appropriate JSON file based on your operating system.

  • Resources for listing and accessing notes via note:// URIs. - Tools for creating new text notes with required title and content parameters. - Prompts for generating summaries of all stored notes, returning structured prompts for LLM summarization.
  1. Creating and managing text notes for documentation.
  2. Summarizing notes for quick reference.
  3. Integrating with Claude Desktop for enhanced note-taking capabilities.

Add to your AI client

Use these steps to connect solana-docs-server MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "solana-docs-mcp-server-aldrin-labs": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-solana-docs-mcp-server-aldrin-labs"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "solana-docs-mcp-server-aldrin-labs": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-solana-docs-mcp-server-aldrin-labs"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "solana-docs-mcp-server-aldrin-labs": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-solana-docs-mcp-server-aldrin-labs"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "solana-docs-mcp-server-aldrin-labs": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-solana-docs-mcp-server-aldrin-labs"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "solana-docs-mcp-server-aldrin-labs": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-solana-docs-mcp-server-aldrin-labs"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "solana-docs-mcp-server-aldrin-labs": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-solana-docs-mcp-server-aldrin-labs"
      ]
    }
  }
}

FAQ

What programming language is used for the server?

The server is built using TypeScript.

How do I install the server?

You can install it by running `npm install` after cloning the repository.

Can I debug the server?

Yes, you can use the MCP Inspector for debugging, which provides a URL to access debugging tools in your browser.