drio
Open app

MCP Documentation Search Server

Source

🔍 FastMCP-powered documentation search engine that provides unified access to multiple framework docs (Next.js, Tailwind, Framer Motion, etc.) with intelligent name resolution and async processing.

Catalog onlyCatalog onlySTDIO

Overview

MCP Documentation Search Server is a powerful documentation search engine built with FastMCP, enabling AI systems to intelligently search across multiple popular framework and library documentations.

To use the server, clone the repository, set up a virtual environment, install dependencies, and run the server. You can then use the provided API to search documentation for various libraries.

  • Multi-library support for frameworks like Next.js, Tailwind CSS, and Framer Motion. - Intelligent search with smart name resolution and DuckDuckGo-powered results. - Asynchronous processing for efficient web request handling. - Robust error handling for network timeouts and invalid inputs.
  1. Quickly finding documentation for specific libraries.
  2. Assisting developers in retrieving relevant information from multiple sources.
  3. Enhancing AI systems with unified access to documentation.

Add to your AI client

Use these steps to connect MCP Documentation Search 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": {
    "mcp-server-documentation-picardraphael": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-documentation-picardraphael"
      ]
    }
  }
}

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": {
    "mcp-server-documentation-picardraphael": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-documentation-picardraphael"
      ]
    }
  }
}

Claude Code

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

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-server-documentation-picardraphael": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-documentation-picardraphael"
      ]
    }
  }
}

VS Code (Copilot)

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

.vscode/mcp.json

{
  "servers": {
    "mcp-server-documentation-picardraphael": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-documentation-picardraphael"
      ]
    }
  }
}

Windsurf

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

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-server-documentation-picardraphael": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-documentation-picardraphael"
      ]
    }
  }
}

Cline

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

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-server-documentation-picardraphael": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-documentation-picardraphael"
      ]
    }
  }
}

FAQ

**What libraries are supported?**

The server supports multiple libraries including LangChain, Next.js, Tailwind CSS, and more.

**Is it easy to set up?**

Yes! Follow the quick start guide in the documentation to set it up easily.

**Can I contribute to the project?**

Absolutely! Contributions are welcome, and you can find guidelines in the repository.