FetchV2 MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@FetchV2 MCP ServerFetch the Wikipedia article on MCP"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
FetchV2 MCP Server
Model Context Protocol (MCP) server for web content fetching and extraction.
This MCP server provides tools to fetch webpages, extract clean content using Trafilatura, and discover links for batch processing.
Features
Fetch Webpages: Extract clean markdown content from any URL
Batch Fetching: Fetch up to 10 URLs in a single request
Link Discovery: Find and filter links on any webpage
llms.txt Support: Parse and fetch LLM-friendly documentation indexes
Smart Extraction: Trafilatura removes boilerplate (navbars, ads, footers)
Robots.txt Compliance: Respects robots.txt with graceful timeout handling
Pagination Support: Handle large pages with
start_indexparameter
Prerequisites
Install
uvfrom AstralInstall Python 3.10 or newer using
uv python install 3.10
Installation
Cursor | VS Code |
Or configure manually in your MCP client:
{
"mcpServers": {
"fetchv2": {
"command": "uvx",
"args": ["fetchv2-mcp-server@latest"],
"disabled": false,
"autoApprove": []
}
}
}Config file locations:
Claude Desktop (macOS):
~/Library/Application Support/Claude/claude_desktop_config.jsonClaude Desktop (Windows):
%APPDATA%\Claude\claude_desktop_config.jsonWindsurf:
~/.codeium/windsurf/mcp_config.jsonKiro:
.kiro/settings/mcp.jsonin your project
Install from PyPI
# Using uv
uv add fetchv2-mcp-server
# Using pip
pip install fetchv2-mcp-serverBasic Usage
Example prompts to try:
"Fetch the documentation from
<URL>""Find all links on
<docs URL>that contain 'tutorial'""Read these three pages and summarize the differences:
[url1, url2, url3]"
Available Tools
fetch
Fetches a webpage and extracts its main content as clean markdown.
fetch(url: str, max_length: int = 5000, start_index: int = 0) -> strParameter | Type | Default | Description |
| str | required | The webpage URL to fetch |
| int | 5000 | Maximum characters to return |
| int | 0 | Character offset for pagination |
| bool | false | Skip extraction, return raw HTML |
| bool | true | Include title, author, date |
| bool | true | Preserve tables in markdown |
| bool | false | Preserve hyperlinks |
| bool | false | Skip robots.txt check |
fetch_batch
Fetches multiple webpages in a single request.
fetch_batch(urls: list[str], max_length_per_url: int = 2000) -> strParameter | Type | Default | Description |
| list[str] | required | List of URLs (max 10) |
| int | 2000 | Character limit per URL |
| bool | false | Skip extraction for all URLs |
discover_links
Discovers all links on a webpage with optional filtering.
discover_links(url: str, filter_pattern: str = "") -> strParameter | Type | Default | Description |
| str | required | The webpage URL to scan |
| str | "" | Regex to filter links (e.g., |
fetch_llms_txt
Fetch and parse an llms.txt file to discover LLM-friendly documentation.
fetch_llms_txt(url: str, include_content: bool = False) -> strParameter | Type | Default | Description |
| str | required | URL to an llms.txt file |
| bool | false | Also fetch content of all linked pages |
| int | 2000 | When include_content=True, max chars per page |
⚠️ Important: By default, only the llms.txt index is fetched — the linked markdown files are NOT downloaded to context. Set
include_content=Trueto explicitly fetch all linked pages.
Example:
# DEFAULT: Only fetches the index (lightweight, ~1KB)
fetch_llms_txt(url="https://docs.example.com/llms.txt")
# Returns: title + list of links with descriptions
# EXPLICIT: Fetches index + all linked .md files (can be large)
fetch_llms_txt(url="https://docs.example.com/llms.txt", include_content=True)
# Returns: structure + content of all linked pagesNote: Relative URLs (e.g., /docs/guide.md) are automatically resolved to absolute URLs.
Workflow Example
Step 1: Discover relevant documentation pages
discover_links(url="https://docs.example.com/", filter_pattern="/guide/")Step 2: Batch fetch the pages you need
fetch_batch(urls=["https://docs.example.com/guide/intro", "https://docs.example.com/guide/setup"])Prompts
fetch_manual - User-initiated fetch that bypasses robots.txt
research_topic - Research a topic by fetching multiple relevant URLs
Development
# Clone and install
git clone https://github.com/praveenc/fetchv2-mcp-server.git
cd fetchv2-mcp-server
uv sync --dev
source .venv/bin/activate
# Run tests
uv run pytest
# Run with MCP Inspector
mcp dev src/fetchv2_mcp_server/server.py
# Linting and type checking
uv run ruff check .
uv run pyrightLicense
MIT - see LICENSE for details.
Contributing
Contributions welcome! Please see CONTRIBUTING.md for guidelines.
Support
For issues and questions, use the GitHub issue tracker.
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.
Latest Blog Posts
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/praveenc/fetchv2-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server