MCP Docs Search Server

by RohitKrish46

2 stars
351 downloads
Not rated
GitHub

About

This is a lightweight, plug-and-play MCP server that empowers any LLM to dynamically search and retrieve up-to-date documentation from popular AI libraries such as LangChain, LlamaIndex, and OpenAI.

Details

Author
RohitKrish46
GitHub stars
2
Downloads
351
Categories
Knowledge Base

- Searches documentation via the Serper API (Google).
- Extracts clean, human-readable text with BeautifulSoup.
- Provides a structured get_docs tool for LLM agents.
- Supports LangChain, LlamaIndex, and OpenAI libraries.
- Designed for seamless integration with Claude Desktop.

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name MCP Docs Search Server
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Clone the repository, create a virtual environment with uv, install dependencies (mcp[cli], httpx, beautifulsoup4), and set the SERPER_API_KEY environment variable. Integrate with Claude Desktop by adding the server configuration to claude_desktop_config.json, then use the get_docs tool with a query and library name. Debug in real time using npx @modelcontextprotocol/inspector uv run main.py.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "mcp docs search server": {
            "documnetation": {
                "command": "uv",
                "args": [
                    "--directory",
                    "your_reository_where_the_repo_exists",
                    "run",
                    "main.py"
                ]
            }
        }
    }
}

McpServers

{
    "documnetation": {
        "command": "uv",
        "args": [
            "--directory",
            "your_reository_where_the_repo_exists",
            "run",
            "main.py"
        ]
    }
}

MCP Docs Search Server

A lightweight MCP server that searches and retrieves relevant documentation content from popular AI libraries like LangChain, LlamaIndex, and OpenAI using a combination of web search and content parsing.

This project allows Language Models to query and fetch up-to-date documentation content dynamically, acting as a bridge between LLMs and external doc sources.

Model Context Protocol (MCP)

The Model Context Protocol is an open standard that enables developers to build secure, two-way connections between their data sources and AI-powered tools. The architecture is straightforward: developers can either expose their data through MCP servers or build AI applications (MCP clients) that connect to these servers.

### LLMs in Isolation

> LLMs alone are limited — their true potential is unlocked when integrated with tools and services via frameworks like MCP.

LLM_on_its_own

1. LLMs without tools, LLMs are static and have limited utility.

2. With tools, they become interactive, but orchestration can be messy.

3. With MCP, LLMs gain a scalable, plug-and-play interface to real-world services, making them much more practical and powerful in production environments.

MCP Ecosystem

The MCP Server acts as the translator/interface between LLMs and services.

> MCP (Modular Capability Provider) standardizes how LLMs interact with external tools/services — promoting interoperability, modularity, and cleaner interfaces.

MCP_ecosystem

This structure decentralizes responsibility:

1. Tool providers build and maintain their own MCP Server implementation.

2. LLMs just need to speak the MCP protocol.

MCP

Purpose and Vision:

- Standardize communication between LLMs and external tools

- Avoid bespoke integrations

- Encourage a scalable ecosystem of services (like a plugin architecture)

Features

Web Search Integration

Uses the Serper API to query Google and retrieve the top documentation pages related to a given search query.

Clean Content Extraction

Parses HTML content using BeautifulSoup to extract clean, human readable text stripping away unnecessary tags, ads, or navigation content.

Seamless LLM Tooling

Exposes a structured get_docs tool that can be used within LLM agents (e.g., Claude, GPT) to query specific libraries in real time.

Tool

get_docs(query: str, library: str)

This is the core tool provided by the MCP server.
It accepts:

query: The search term or phrase.

library: One of langchain, llama-index, or openai.

Workflow

1. Searches for relevant documentation pages 2. Fetches and parses clean text content 3. Sends the result back to the LLM for further reasoning and responses

Setup

1. Clone the repository

git clone https://github.com/your-username/mcp-docs-search.git
cd mcp-docs-search

2. Create a virtual Envoirment using uv and activate it

uv venv .venv

.\.venv\Scripts\activate

3. Install dependencies

uv add "mcp[cli]" httpx
uv pip install beautifulsoup4

4. Set your environment variables Create a .env file and add your Serper API key:

SERPER_API_KEY=your_serper_api_key

Claude Desktop Integration

To integrate this server as a tool within Claude Desktop:

Open Claude Desktop → File > Settings > Developer > Edit Config.

Update your claude_desktop_config.json to include the following:

{
    "mcpServers": {
        "documnetation": {
            "command": "uv",
            "args": [
                "--directory",
                "your_reository_where_the_repo_exists",
                "run",
                "main.py"
            ]

}
}
}

> 🔁 Important: Restart Claude Desktop after saving the config to load the new to

Once integrated successfully, you'll see your custom MCP tool appear within the Claude UI:

image

Use it to query docs in real time:

MCP_tool_working

Working_MCP

Debugging in Real Time

One can also debug the tool that we created using the following command.

> Remember to install NodeJs18+

npx @modelcontextprotocol/inspector uv run main.py
and follow to the port where the connection is setup.

image

Supported Libraries / Docs

LangChain
LlamaIndex
OpenAI

More libraries can be easily added by updating the docs_urls dictionary.

Future Enhancements

- Add support for additional libraries like HuggingFace, PyTorch, TensorFlow, etc.

- Implement caching to reduce redundant fetches and improve performance.

- Introduce a scoring/ranking mechanism based on relevance or token quality.

- Unit testing and better exception handling for production readiness.

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.