MCP.so
ログイン

Documentation Retrieval MCP Server (DOCRET)

@Sreedeep-SS

Documentation Retrieval MCP Server (DOCRET) について

A Model Context Protocol (MCP) server

基本情報

カテゴリ

メモリとナレッジ

ライセンス

MIT

ランタイム

python

トランスポート

stdio

公開者

Sreedeep-SS

設定

以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。

{
  "mcpServers": {
    "docret-mcp-server": {
      "command": "python",
      "args": [
        "main.py"
      ]
    }
  }
}

ツール

ツールは検出されませんでした

ツールは README から自動的に抽出されます。メンテナーは ## Tools という見出しの下に記載することで、このタブに反映できます。

概要

What is Documentation Retrieval MCP Server (DOCRET)?

Documentation Retrieval MCP Server (DOCRET) is a Model Context Protocol (MCP) server that enables AI assistants to access up-to-date documentation for Python libraries such as LangChain, LlamaIndex, and OpenAI. It dynamically fetches and provides relevant information from official documentation sources, ensuring AI applications always have access to the latest content.

How to use Documentation Retrieval MCP Server (DOCRET)?

Clone the repository, create and activate a virtual environment, install dependencies with pip install -r requirements.txt (or uv sync), set the SERPER_API_KEY environment variable in a .env file, and run python main.py. The server exposes a get_docs function that takes a query and library parameter. Integrate with AI assistants by adding a JSON configuration to the assistant’s MCP server list.

Key features of Documentation Retrieval MCP Server (DOCRET)

  • Dynamic retrieval of documentation content for Python libraries.
  • Asynchronous web searches using the SERPER API.
  • HTML parsing with BeautifulSoup to extract readable text.
  • Extensible design: easily add new libraries by updating the docs_urls dictionary.
  • Currently supports LangChain, LlamaIndex, and OpenAI.

Use cases of Documentation Retrieval MCP Server (DOCRET)

  • AI assistants answering user questions about Python library APIs and usage.
  • Keeping AI applications updated with the latest official documentation.
  • Providing context for code generation or debugging sessions.
  • Integrating with Claude Desktop or Claude Code for real-time documentation lookup.

FAQ from Documentation Retrieval MCP Server (DOCRET)

What is the Model Context Protocol?

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

What are the prerequisites for using this server?

You need Python 3.8 or higher, a package manager (UV or pip), a Serper API key, and Claude Desktop or Claude Code for testing.

Which Python libraries are currently supported?

The server currently supports LangChain, LlamaIndex, and OpenAI.

How can I add support for an additional library?

Add the library name and its documentation URL to the docs_urls dictionary in main.py. The server will then be able to search and retrieve documentation from that URL.

How do I run the MCP server after installation?

After setting up the environment and API key, run python main.py from the project root directory to launch the server.

コメント

「メモリとナレッジ」の他のコンテンツ