MCP Documentation Server
MCP 문서 서버
모델 컨텍스트 프로토콜을 통해 LLM 애플리케이션(Cursor, Claude Desktop, Windsurf 등)과 문서 소스를 통합할 수 있는 MCP 문서 서버의 맞춤형 버전입니다.
개요
이 서버는 MCP 호스트 애플리케이션에 다음을 제공합니다.
특정 문서 파일(langgraph.txt 및 mcp.txt)에 대한 액세스
해당 파일 내의 URL에서 문서를 가져오는 도구
Related MCP server: Documentation Retrieval MCP Server (DOCRET)
지원되는 문서
현재 설정됨:
LangGraph 문서( https://raw.githubusercontent.com/esakrissa/mcp-doc/main/docs/langgraph.txt 에서)
MCP 문서( https://raw.githubusercontent.com/esakrissa/mcp-doc/main/docs/mcp.txt 에서)
빠른 시작
설정 및 실행
지엑스피1
서버 실행
설치된 명령을 사용하여 서버를 실행할 수 있습니다.
# 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 localhostIDE 통합
커서
~/.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에 대한 집중적인 문서 액세스를 제공하도록 수정되었습니다.
This server cannot be installed
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 Servers
- FlicenseBqualityDmaintenanceAn MCP server that fetches real-time documentation for popular libraries like Langchain, Llama-Index, MCP, and OpenAI, allowing LLMs to access updated library information beyond their knowledge cut-off dates.13
- Alicense-qualityDmaintenanceAn 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
- Alicense-qualityFmaintenanceA Model Context Protocol (MCP) server that implements AI-First Development framework principles, allowing LLMs to interact with context-first documentation tools and workflows for preserving knowledge and intent alongside code.339AGPL 3.0
- Alicense-qualityCmaintenanceA lightweight, zero-config MCP server that makes documentation and API specifications instantly accessible to AI models using the llms.txt standard. It enables searching and retrieving full documentation, OpenAPI, and AsyncAPI specs without requiring a complex RAG infrastructure or vector database.221Apache 2.0
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
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.
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/esakrissa/mcp-doc'
If you have feedback or need assistance with the MCP directory API, please join our Discord server