DOC-Intelligence-MCP-SERVER
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@DOC-Intelligence-MCP-SERVERSearch LangChain docs for ChatOpenAI usage"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
DOC-Intelligence-MCP-SERVER
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.
Related MCP server: Library Docs MCP Server
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 .envInside .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.pyClaude Desktop Integration
To add this tool to your Claude Desktop client, edit your configuration file:
Windows Path:
%APPDATA%\Claude\claude_desktop_config.jsonmacOS 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"
}
}
}
}ReplaceYOUR_SERPER_API_KEY and YOUR_GROQ_API_KEY with 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"
]
}
}
}ReplaceABSOLUTE_PATH_TO_CLONED_FOLDER with the full path where you cloned this repository (e.g. C:\\Users\\Username\\DOC-Intelligence-MCP-SERVER). The local .env file in that folder will be loaded automatically.
Restart Claude Desktop, and the get_docs tool will be ready to use!
Available Tools
1 toolget_docsA
Search the latest official documentation to answer developer queries. Use this tool whenever the user asks questions about uv, openai, langchain, or llama-index.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | The search terms or query (e.g. "How to use publish a package with uv on gitlab") | |
| library | Yes | The specific library/technology to search for. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It only states 'Search the latest official documentation' but fails to disclose important traits such as result format, pagination, caching behavior, or error handling. For a search tool, this is a significant gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, both front-loaded. The first sentence states purpose, the second gives usage guidance. No unnecessary words. Perfectly concise and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple with two parameters and no output schema. The description covers purpose and when to use, but lacks details on return format, output behavior, or any limitations. Without output schema, the description should hint at what the agent can expect. It falls short, though the core use is conveyed.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with both parameters described in the input schema. The description adds minimal extra meaning beyond the schema—it reiterates the library list and the query's purpose. Baseline is 3 for high coverage; the description does not provide substantial additional semantics.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Search the latest official documentation to answer developer queries,' specifying the verb (search) and resource (latest official documentation). It explicitly lists the four libraries, making the tool's domain unambiguous. No siblings exist, so no differentiation needed.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly states when to use the tool: 'Use this tool whenever the user asks questions about uv, openai, langchain, or llama-index.' This provides clear usage context, though it does not mention when not to use or alternatives. Given the absence of sibling tools, this is sufficient.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
Only one tool exists, so there is no risk of ambiguity or overlap.
With a single tool, naming is trivially consistent; the name 'get_docs' clearly conveys its purpose.
One tool for a broad domain (multiple libraries) feels minimal; while it can handle many queries, it offers no specialized operations.
The server covers basic documentation search, but lacks other functionality like listing sources or performing updates, which may be needed for comprehensive querying.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
@latest documentation and code examples to 9000+ libraries for LLMs and AI code editors in a singl…
The documentation, as a tool your agent can call: 950+ AI-dev guides. Search + fetch tools.
LLM-ready web search + instant answers + URL-to-clean-text fetch for agents and RAG.
Provide your AI coding tools with token-efficient access to up-to-date technical documentation for…
Related MCP Servers
- FlicenseAqualityDmaintenanceEnables retrieval and cleaning of official documentation content for popular AI/Python libraries (uv, langchain, openai, llama-index) through web scraping and LLM-powered content extraction. Uses Serper API for search and Groq API to clean HTML into readable text with source attribution.14
- FlicenseBqualityNot gradedmaintenanceSearches and fetches real-time documentation for libraries like Langchain, OpenAI, and Llama-Index using the Serper API. It allows LLMs to access up-to-date technical information and bypass knowledge cut-off limitations.1
- FlicenseAqualityDmaintenanceProvides Large Language Models with real-time access to the latest documentation for Python libraries like Langchain, LlamaIndex, and OpenAI, enabling accurate and up-to-date code suggestions.1
- FlicenseBqualityDmaintenanceEnables AI assistants to query and search library documentation from GitHub repositories or web pages using RAG and web scraping.2
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/SARAN-KUMAR-S/DOC-Intelligence-MCP-SERVER'
If you have feedback or need assistance with the MCP directory API, please join our Discord server