Docs Fetch MCP Server
@wolfyy970
Docs Fetch MCP Server について
MCP server for fetching web page content with recursive exploration capability
基本情報
設定
以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。
{
"mcpServers": {
"docs-fetch": {
"command": "node",
"args": [
"/path/to/docs-fetch-mcp/build/index.js"
],
"env": {
"MCP_TRANSPORT": "pipe"
}
}
}
}ツール
ツールは検出されませんでした
ツールは README から自動的に抽出されます。メンテナーは ## Tools という見出しの下に記載することで、このタブに反映できます。
概要
What is Docs Fetch MCP Server?
An MCP server that enables LLMs to fetch web content with recursive exploration. It retrieves clean, readable text from web pages and autonomously follows same-domain links up to a specified depth, making it ideal for learning topics by exploring documentation.
How to use Docs Fetch MCP Server?
Install via npm and build the project. Configure your MCP client (e.g., Claude Desktop) with the node command pointing to the built index.js. The server exposes a single tool fetch_doc_content which accepts a URL and optional depth (1–5), returning page content and discovered links.
Key features of Docs Fetch MCP Server
- Clean content extraction, removing navigation and ads
- Recursive same-domain link exploration (depth 1–5)
- Dual‑strategy: fast axios first, puppeteer fallback
- Global timeout handling to stay within MCP limits
- Parallel crawling with robust error handling
Use cases of Docs Fetch MCP Server
- An LLM learning a new framework by exploring its official docs
- Gathering comprehensive information from a documentation site
- Automatically collecting related pages from a single starting URL
- Enabling AI assistants to research topics with minimal user guidance
FAQ from Docs Fetch MCP Server
What is the main purpose of this server?
It lets LLMs autonomously fetch and explore web content, especially documentation, by recursively following same‑domain links to gather complete context on a topic.
What dependencies does it require?
Node.js, npm, and the packages @modelcontextprotocol/sdk, puppeteer, and axios. Puppeteer is used as a fallback for complex pages.
How do I install and configure it?
Clone the repo, run npm install and npm run build, then add the server to your MCP client’s configuration with the node command pointing to build/index.js and set MCP_TRANSPORT to "pipe".
What recursion depth can I use?
The depth parameter accepts 1 to 5, with a default of 1. Higher values explore more linked pages within the same domain.
Does the server handle errors or timeouts?
Yes. It implements global timeout handling, graceful error recovery for network issues, and returns partial results even if some pages fail.
「メモリとナレッジ」の他のコンテンツ
Notion MCP Integration
danhilseA simple MCP integration that allows Claude to read and manage a personal Notion todo list
Jupyter Notebook MCP Server (for Cursor)
jbenoModel Context Protocol (MCP) server designed to allow AI agents within Cursor to interact with Jupyter Notebook (.ipynb) files

Memory
modelcontextprotocolModel Context Protocol Servers

Dash Api Docs Mcp Server
KapeliMCP server for Dash, the macOS API documentation browser
Context Portal MCP (ConPort)
GreatScottyMacContext Portal (ConPort): A memory bank MCP server building a project-specific knowledge graph to supercharge AI assistants. Enables powerful Retrieval Augmented Generation (RAG) for context-aware development in your IDE.
コメント