DOC Intelligence SERVER
FreeNot checkedEnables LLMs to dynamically search, scrape, and query official documentation of libraries like uv, OpenAI, LangChain, and LlamaIndex via Google Serper and Groq.
About
Enables LLMs to dynamically search, scrape, and query official documentation of libraries like uv, OpenAI, LangChain, and LlamaIndex via Google Serper and Groq.
README
A Model Context Protocol (MCP) server that enables LLMs (like Claude) to dynamically search, scrape, and query libraries' official documentation using Google Serper and Groq.
Features
- Google Serper API Integration: Searches documentation sites for up-to-date information.
- Fast Web Scraping: Extracts page content cleanly using
trafilatura. - LLM Content Cleaning: Automatically cleans and strips HTML bloat from documentation pages using Groq (
llama-3.1-8b-instant). - Claude Integration: Instantly works as a tool within Claude Desktop or any other MCP client.
Supported Libraries (Configured Domains)
uv(docs.astral.sh/uv)openai(platform.openai.com/docs)langchain(python.langchain.com/docs)llama-index(docs.llamaindex.ai/en/stable)
Setup
1. Requirements
Ensure you have uv installed.
2. Configure Environment Variables
Copy .env.example to .env and fill in your API keys:
cp .env.example .env
Inside .env:
SERPER_API_KEY: Get one from Serper.devGROQ_API_KEY: Get one from Groq Console
3. Run Locally (Testing)
You can run the test client to verify operations:
uv run client.py
Claude Desktop Integration
To add this tool to your Claude Desktop client, edit your configuration file:
- Windows Path:
%APPDATA%\Claude\claude_desktop_config.json - macOS Path:
~/Library/Application Support/Claude/claude_desktop_config.json
Choose one of the integration methods below:
Option 1: Run directly from GitHub (Quickest, no cloning required)
This runs the MCP server directly from GitHub. Add this JSON snippet under "mcpServers":
{
"mcpServers": {
"docs-intelligence": {
"command": "uv",
"args": [
"run",
"https://raw.githubusercontent.com/SARAN-KUMAR-S/DOC-Intelligence-MCP-SERVER/main/mcp_server.py"
],
"env": {
"SERPER_API_KEY": "YOUR_SERPER_API_KEY",
"GROQ_API_KEY": "YOUR_GROQ_API_KEY"
}
}
}
}
[!IMPORTANT] Replace
YOUR_SERPER_API_KEYandYOUR_GROQ_API_KEYwith your actual credentials.
Option 2: Clone and Run Locally (Best for making code changes)
If you cloned the repository locally, create a .env file containing your API keys in the root directory, and configure the path under "mcpServers":
{
"mcpServers": {
"docs-intelligence": {
"command": "uv",
"args": [
"--directory",
"ABSOLUTE_PATH_TO_CLONED_FOLDER",
"run",
"mcp_server.py"
]
}
}
}
[!NOTE] Replace
ABSOLUTE_PATH_TO_CLONED_FOLDERwith the full path where you cloned this repository (e.g.C:\\Users\\Username\\DOC-Intelligence-MCP-SERVER). The local.envfile in that folder will be loaded automatically.
Restart Claude Desktop, and the get_docs tool will be ready to use!
Installing DOC Intelligence SERVER
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/SARAN-KUMAR-S/DOC-Intelligence-MCP-SERVERFAQ
Is DOC Intelligence SERVER MCP free?
Yes, DOC Intelligence SERVER MCP is free — one-click install via Unyly at no cost.
Does DOC Intelligence SERVER need an API key?
No, DOC Intelligence SERVER runs without API keys or environment variables.
Is DOC Intelligence SERVER hosted or self-hosted?
A hosted option is available: Unyly runs the server in the cloud, no local setup required.
How do I install DOC Intelligence SERVER in Claude Desktop, Claude Code or Cursor?
Open DOC Intelligence SERVER on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Playwright
Browser automation, scraping, screenshots
by MicrosoftPuppeteer
Browser automation and web scraping.
by modelcontextprotocolopentabs-dev/opentabs
Plugin-based MCP server + Chrome extension that gives AI agents access to web applications through the user's authenticated browser session. 100+ plugins with a
by opentabs-devrobhunter/agentdeals
1,500+ developer infrastructure deals, free tiers, and startup programs across 54 categories. Search deals, compare vendors, plan stacks, and track pricing chan
by robhunterCompare DOC Intelligence SERVER with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All browse MCPs
