Library Docs MCP Server
ライブラリドキュメントMCPサーバー
これは、Serper API を使用して、Langchain、Llama-Index、MCP、OpenAI などの一般的なライブラリのドキュメントを検索および取得できる MCP (Model Context Protocol) サーバーです。
特徴
自然言語クエリを使用してライブラリドキュメントを検索します。
Langchain、Llama-Index、MCP、OpenAI をサポートします (他のライブラリを追加するにはコードを更新します)。
Serper APIを使用してサイト固有の検索を実行します。BeautifulSoupを使用してドキュメントを解析し、返します。更新されたドキュメントを提供します。知識のカットオフ日がある LLM モデルに役立ちます。
Related MCP server: docpilot-mcp
このサーバーを LLM で使用する理由
Claude Desktopや類似のプラットフォームで使用されるものを含む多くのLLMモデルには、知識の期限が設定されており、最新のライブラリドキュメントにアクセスできない場合があります。このMCPサーバーは、以下の方法でこの問題を解決します。
公式ソースからリアルタイムのドキュメントを取得します。
開発とトラブルシューティングのための最新情報を提供します。
新しいライブラリ更新を扱う際の応答の精度と関連性を向上します。
Claude Desktop の設定
このサーバーをClaude Desktopで使用するには、 claude_desktop_config.jsonファイルを次の構成で更新します。
{
"mcpServers": {
"docs-mcp-server": {
"command": "C:\\Users\\Vikram\\.local\\bin\\uv.exe",
"args": [
"run",
"--with",
"mcp[cli]",
"mcp",
"run",
"F:\\My Projects\\AI\\docs-mcp-server\\server.py"
]
}
}
}Available Tools
1 toolget_docsC
Search the docs for a given query and library.
Supports langchain, llama-index, mcp, and openai.
Args:
query: The query to search for (e.g. "Chroma DB")
library: The library to search in (e.g. "langchain")
Returns:
Text from the docs
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | ||
| library | Yes |
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. It mentions 'Supports langchain, llama-index, mcp, and openai,' adding some context about supported libraries. However, it fails to disclose critical behavioral traits such as search scope (e.g., full-text vs. titles), result format details, pagination, rate limits, or error handling, leaving significant gaps for a search tool.
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?
The description is appropriately sized and structured: it starts with a clear purpose statement, followed by library support, and then details args and returns in a bullet-like format. Every sentence adds value, with no redundant information, though the 'Returns' section could be more specific, slightly reducing efficiency.
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?
Given the tool's moderate complexity (2 parameters, no annotations, no output schema), the description is minimally adequate. It covers purpose, parameters, and return type at a high level, but lacks depth in behavioral transparency, usage guidelines, and output details (e.g., result structure or examples). It meets basic needs but has clear gaps for effective agent use.
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 0%, so the schema provides no parameter details. The description compensates by explaining both parameters: 'query' as 'The query to search for' with an example, and 'library' as 'The library to search in' with an example and list of supported values. This adds meaningful semantics beyond the bare schema, but it doesn't fully detail constraints or formats, meeting the baseline for partial compensation.
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 the tool's purpose: 'Search the docs for a given query and library.' It specifies the verb ('search'), resource ('docs'), and scope ('query and library'). However, without sibling tools, it cannot demonstrate differentiation, so it doesn't reach a score of 5.
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 provides minimal guidance: it lists supported libraries ('langchain, llama-index, mcp, and openai'), which implies when to use it for those libraries. However, it lacks explicit when/when-not instructions, prerequisites, or alternatives, offering only basic context without exclusions or detailed usage scenarios.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
1 tool update
- First observed
get_docs
TDQS
With only one tool, there is no possibility of confusion or overlap between tools. The tool has a single, clear purpose: searching documentation for specific libraries.
The single tool name 'get_docs' follows a clear verb_noun pattern, making it predictable and readable. There are no other tools to compare against, so consistency is inherently perfect.
A single tool for a documentation search server feels too thin for the apparent scope, which involves multiple libraries (langchain, llama-index, mcp, openai). This minimal set may limit functionality and force agents to rely heavily on this one tool for all tasks.
The tool surface is severely incomplete for a documentation server. While it supports search, there are obvious gaps such as listing available libraries, browsing documentation sections, or getting metadata about docs. This will likely cause agent failures when more nuanced interactions are needed.
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
An MCP server that gives your AI access to the source code and docs of all public github repos
Augments MCP Server - A comprehensive framework documentation provider for Claude Code
Driflyte MCP server which lets AI assistants query topic-specific knowledge from web and GitHub.
MCP server for agentverse documentation, generated by doc2mcp.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceAn MCP server that enables AI assistants to access up-to-date documentation for Python libraries like LangChain, LlamaIndex, and OpenAI through dynamic fetching from official sources.1MIT
- AlicenseNot gradedqualityCmaintenanceAn MCP server that provides tools to fetch live, version-accurate documentation, changelogs, examples, and method signatures for npm and PyPI packages, preventing AI coding agents from hallucinating stale APIs.21ISC
- FlicenseAqualityCmaintenanceAn MCP server that searches official documentation for popular libraries, scrapes pages, and returns clean, LLM-ready text.1-
- FlicenseNot gradedqualityBmaintenanceLocal MCP server that indexes documentation from URLs/files into a vector database, enabling coding agents to search and use up-to-date library and API documentation.-
Appeared in Searches
- Latest Python Libraries and Their Purposes
- MCP server for accessing online documentation of open-source libraries in coding agents
- Documentation server for Ansible, NixOS, and programming languages
- A service for finding the latest API documentation
- A server for searching Rust programming language documentation
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/vikramdse/docs-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server