Skip to main content
Glama

MCP Documentation Server

by esakrissa

MCP ドキュメント サーバー

モデル コンテキスト プロトコルを介して LLM アプリケーション (Cursor、Claude Desktop、Windsurf など) とドキュメント ソース間の統合を可能にする MCP ドキュメント サーバーのカスタマイズされたバージョンです。

概要

このサーバーは、MCP ホスト アプリケーションに次の機能を提供します。

  1. 特定のドキュメント ファイル (langgraph.txt および mcp.txt) へのアクセス
  2. ファイル内のURLからドキュメントを取得するためのツール

サポートされているドキュメント

現在設定中:

クイックスタート

セットアップと実行

# Clone the repository git clone https://github.com/esakrissa/mcp-doc.git cd mcp-doc # Create and activate a virtual environment python -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate # Install the package in development mode pip install -e .

サーバーの実行

インストールされたコマンドを使用してサーバーを実行できます。

# Run the server with the config file mcpdoc \ --json config.json \ --transport sse \ --port 8082 \ --host localhost

または、UV を使用する場合:

# Install uv (if not already installed) curl -LsSf https://astral.sh/uv/install.sh | sh # Run the server with UV uvx --from mcpdoc mcpdoc \ --json config.json \ --transport sse \ --port 8082 \ --host localhost

IDE統合

カーソル

~/.cursor/mcp.jsonに追加する

{ "mcpServers": { "mcp-doc": { "command": "uvx", "args": [ "--from", "mcpdoc", "mcpdoc", "--urls", "LangGraph:https://raw.githubusercontent.com/esakrissa/mcp-doc/main/docs/langgraph.txt", "ModelContextProtocol:https://raw.githubusercontent.com/esakrissa/mcp-doc/main/docs/mcp.txt", "--allowed-domains", "*", "--transport", "stdio" ] } } }

次に、カーソルのカスタム命令に次の命令を追加します。

for ANY question about LangGraph and Model Context Protocol (MCP), use the mcp-doc server to help answer -- + call list_doc_sources tool to get the available documentation files + call fetch_docs tool to read the langgraph.txt or mcp.txt file + reflect on the urls in langgraph.txt or mcp.txt + reflect on the input question + call fetch_docs on any urls relevant to the question + use this to answer the question

統合が機能しているかどうかをテストするには、Cursor に LangGraph または MCP について質問し、ドキュメント サーバー ツールを使用して情報を取得するかどうかを確認します。

セキュリティに関する注意事項

セキュリティ上の理由から、厳格なドメイン アクセス制御が実装されています。

  • リモートドキュメントファイル: 特定のドメインのみが自動的に許可されます
  • ローカルドキュメントファイル: ドメインは自動的に許可されません
  • --allowed-domainsを使用してドメインを明示的に追加するか、 --allowed-domains '*'使用してすべて許可します(注意して使用してください)。

参考文献

このプロジェクトは、 LangChain AI によるオリジナルの mcpdocに基づいており、LangGraph と MCP に重点を置いたドキュメント アクセスを提供するために変更されています。

-
security - not tested
F
license - not found
-
quality - not tested

hybrid server

The server is able to function both locally and remotely, depending on the configuration or use case.

LLM アプリケーションとドキュメント ソース間の統合を可能にし、LangGraph および Model Context Protocol ドキュメントへの AI 支援アクセスを提供するカスタマイズされた MCP サーバー。

  1. 概要
    1. サポートされているドキュメント
      1. クイックスタート
        1. セットアップと実行
        2. サーバーの実行
        3. IDE統合
      2. セキュリティに関する注意事項
        1. 参考文献

          Related MCP Servers

          • -
            security
            A
            license
            -
            quality
            An MCP server that provides tools to load and fetch documentation from any llms.txt source, giving users full control over context retrieval for LLMs in IDE agents and applications.
            Last updated -
            177
            Python
            MIT License
            • Apple
          • -
            security
            A
            license
            -
            quality
            A Model Context Protocol (MCP) compliant server that allows Large Language Models (LLMs) to search and retrieve content from microCMS APIs.
            Last updated -
            TypeScript
            MIT License
          • -
            security
            F
            license
            -
            quality
            A Model Context Protocol server implementation that enables seamless integration with Claude and other MCP-compatible clients to access Prem AI's language models, RAG capabilities, and document management features.
            Last updated -
            JavaScript
          • A
            security
            A
            license
            A
            quality
            The APISIX Model Context Protocol (MCP) server bridges large language models (LLMs) with the APISIX Admin API.
            Last updated -
            31
            67
            16
            TypeScript
            Apache 2.0

          View all related MCP servers

          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/esakrissa/mcp-doc'

          If you have feedback or need assistance with the MCP directory API, please join our Discord server