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.
记忆与知识 分类下的更多 MCP 服务器
minutes
silversteinEvery meeting, every idea, every voice note — searchable by your AI. Open-source, privacy-first conversation memory layer.
Context7 MCP - Up-to-date Docs For Any Cursor Prompt
upstashContext7 Platform -- Up-to-date code documentation for LLMs and AI code editors
Notion MCP Server
suekouA Model Context Protocol server for connecting Notion to MCP-compatible clients
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.
mcp-local-rag
nkapila6"primitive" RAG-like web search model context protocol (MCP) server that runs locally. ✨ no APIs ✨
评论