Smart Webfetch
FreeNot checkedContext-aware web fetching for LLMs, providing 7 tools to check page size, fetch with truncation, extract code/sections/links/tables, and paginate large documen
About
Context-aware web fetching for LLMs, providing 7 tools to check page size, fetch with truncation, extract code/sections/links/tables, and paginate large documents.
README
PyPI version PyPI downloads Python version License: MIT
Context-aware web fetching for LLMs. Prevents context window flooding by checking page size before fetching and providing surgical extraction tools.
The Problem
Standard web fetch tools dump entire pages into the context window, often:
- Exceeding token limits
- Wasting context on navigation, footers, ads
- Flooding the model with irrelevant content
The Solution
Smart WebFetch provides 7 tools for intelligent web fetching:
| Tool | Purpose |
|---|---|
web_preflight |
Check page size before fetching |
web_smart_fetch |
Fetch with automatic truncation |
web_fetch_code |
Extract only code blocks |
web_fetch_section |
Fetch specific heading/section |
web_fetch_chunked |
Paginated fetching for large docs |
web_fetch_links |
Extract all links from a page |
web_fetch_tables |
Extract tables as markdown |
Installation
# Install from PyPI
pip install smart-webfetch-mcp
# Or with uvx (recommended for MCP)
uvx smart-webfetch-mcp
Configuration
Claude Code
claude mcp add --transport stdio smart-webfetch -- uvx smart-webfetch-mcp
OpenCode
Add to your opencode.json:
{
"mcp": {
"smart-webfetch": {
"type": "local",
"command": ["uvx", "smart-webfetch-mcp"],
"enabled": true
}
}
}
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"smart-webfetch": {
"command": "uvx",
"args": ["smart-webfetch-mcp"]
}
}
}
Usage Examples
Check before fetching
Use web_preflight to check https://docs.python.org/3/library/asyncio.html
Response:
{
"url": "https://docs.python.org/3/library/asyncio.html",
"estimated_tokens": 45000,
"safe_for_context": false,
"recommendation": "Very large page (~45,000 tokens). Use web_fetch_section or web_fetch_chunked."
}
Fetch with automatic truncation
Use web_smart_fetch on https://example.com/docs with max_tokens=4000
Extract only code examples
Use web_fetch_code on https://docs.python.org/3/library/asyncio-task.html
Get specific section
Use web_fetch_section on https://docs.python.org/3/library/asyncio.html
with heading="Running an asyncio Program"
Paginated reading
Use web_fetch_chunked on https://large-docs.com/api with chunk=0, chunk_size=4000
Then continue with chunk=1, chunk=2, etc.
Tool Reference
web_preflight
Check page metadata before fetching.
Parameters:
url(required): URL to check
Returns:
estimated_tokens: Approximate token countcontent_type: MIME typeis_html: Whether content is HTMLtitle: Page title (if HTML)safe_for_context: Boolean (true if < 8000 tokens)recommendation: Human-readable advice
web_smart_fetch
Fetch with automatic truncation for large pages.
Parameters:
url(required): URL to fetchmax_tokens(optional, default 8000): Maximum tokens to returnstrategy(optional, default "auto"): "auto" finds natural break points, "truncate" hard cuts
Returns: Markdown content with metadata header
web_fetch_code
Extract only code blocks from a page.
Parameters:
url(required): URL to extract code from
Returns: Code blocks with language annotations and context
web_fetch_section
Fetch content under a specific heading.
Parameters:
url(required): URL to fetch fromheading(required): Heading text to find (case-insensitive)
Returns: Section content or list of available sections if not found
web_fetch_chunked
Fetch large documents in chunks.
Parameters:
url(required): URL to fetchchunk(optional, default 0): Chunk index (0-based)chunk_size(optional, default 4000): Tokens per chunk
Returns: Chunk content with navigation metadata
web_fetch_links
Extract all links from a page.
Parameters:
url(required): URL to extract links fromfilter_pattern(optional): Regex to filter link URLsexternal_only(optional, default false): Only return external links
Returns: Markdown list of links with text and URL
web_fetch_tables
Extract tables from a page as markdown.
Parameters:
url(required): URL to extract tables fromtable_index(optional): Specific table index (0-based), returns all if not specified
Returns: Markdown formatted tables
Development
# Clone and install dev dependencies
git clone https://github.com/mathisto/smart-webfetch-mcp
cd smart-webfetch-mcp
pip install -e ".[dev]"
# Run tests
pytest
# Format code
ruff format .
ruff check --fix .
License
MIT
Install Smart Webfetch in Claude Desktop, Claude Code & Cursor
unyly install smart-webfetch-mcpInstalls into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.
First time? Get the CLI: curl -fsSL https://unyly.org/install | sh
Or configure manually
Run in your terminal:
claude mcp add smart-webfetch-mcp -- uvx smart-webfetch-mcpFAQ
Is Smart Webfetch MCP free?
Yes, Smart Webfetch MCP is free — one-click install via Unyly at no cost.
Does Smart Webfetch need an API key?
No, Smart Webfetch runs without API keys or environment variables.
Is Smart Webfetch hosted or self-hosted?
A hosted option is available: Unyly runs the server in the cloud, no local setup required.
How do I install Smart Webfetch in Claude Desktop, Claude Code or Cursor?
Open Smart Webfetch on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
GitHub
PRs, issues, code search, CI status
by GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
by mcpdotdirectCompare Smart Webfetch with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All development MCPs
