Fetch MCP Server with CSS selectors function
burnworks
README
Fetch MCP Server with CSS selectors function
A Model Context Protocol server that provides web content fetching capabilities. This server enables LLMs to retrieve and process content from web pages, converting HTML to markdown for easier consumption.
The fetch tool will truncate the response, but by using the start_index
argument, you can specify where to start the content extraction. This lets models read a webpage in chunks, until they find the information they need.
Available Tools
custom-fetch
- Fetches a URL from the internet and extracts its contents as markdown.url
(string, required): URL to fetchmax_length
(integer, optional): Maximum number of characters to return (default: 5000)start_index
(integer, optional): Start content from this character index (default: 0)raw
(boolean, optional): Get raw content without markdown conversion (default: false)selector
(string, optional): CSS selector, ID, or element name to extract specific contentselector_type
(string, optional): Type of selector: 'css', 'id', or 'element'
Prompts
- custom-fetch
- Fetch a URL and extract its contents as markdown
- Arguments:
url
(string, required): URL to fetchselector
(string, optional): CSS selector, ID, or element name to extract specific contentselector_type
(string, optional): Type of selector: 'css', 'id', or 'element'
Selector Feature
This enhanced version includes a powerful selector feature that allows you to extract specific content from web pages:
Types of Selectors
-
ID Selector: Extract a specific element by its ID attribute
{ "url": "https://example.com", "selector": "main-content", "selector_type": "id" }
-
Element Selector: Extract the first element of a specific type
{ "url": "https://example.com", "selector": "main", "selector_type": "element" }
-
CSS Selector: Extract content using CSS selector syntax
{ "url": "https://example.com", "selector": ".article-content > p", "selector_type": "css" }
Use Cases
- Extract just the main article content from news sites
- Focus on specific sections of documentation pages
- Target precisely the content you need from large web pages
Installation
Optionally: Install node.js, this will cause the fetch server to use a different HTML simplifier that is more robust.
Using uv (recommended)
When using uv
no specific installation is needed. We will
use uvx
to directly run burnworks-mcp-server-fetch.
Using PIP
Alternatively you can install burnworks-mcp-server-fetch
via pip:
pip install burnworks-mcp-server-fetch
After installation, you can run it as a script using:
python -m burnworks_mcp_server_fetch
Configuration
Configure for Claude.app
Add to your Claude settings:
<details> <summary>Using uvx</summary>
"mcpServers": {
"custom-fetch": {
"command": "uvx",
"args": ["burnworks-mcp-server-fetch"]
}
}
</details>
<details> <summary>Using pip installation</summary>
"mcpServers": {
"custom-fetch": {
"command": "python",
"args": ["-m", "burnworks_mcp_server_fetch"]
}
}
</details>
Customization - robots.txt
By default, the server will obey a websites robots.txt file if the request came from the model (via a tool), but not if
the request was user initiated (via a prompt). This can be disabled by adding the argument --ignore-robots-txt
to the
args
list in the configuration.
Customization - User-agent
By default, depending on if the request came from the model (via a tool), or was user initiated (via a prompt), the server will use either the user-agent
ModelContextProtocol/1.0 (Autonomous; +https://github.com/modelcontextprotocol/servers)
or
ModelContextProtocol/1.0 (User-Specified; +https://github.com/modelcontextprotocol/servers)
This can be customized by adding the argument --user-agent=YourUserAgent
to the args
list in the configuration.
Customization - Proxy
The server can be configured to use a proxy by using the --proxy-url
argument.
Debugging
You can use the MCP inspector to debug the server. For uvx installations:
npx @modelcontextprotocol/inspector uvx burnworks-mcp-server-fetch
Or if you've installed the package in a specific directory or are developing on it:
cd path/to/servers/src/fetch
npx @modelcontextprotocol/inspector uv run burnworks-mcp-server-fetch
Example Selector Usage
Extract Just the Main Content Area
custom-fetch
url: https://example.com/article
selector: main
selector_type: element
Extract Content by ID
custom-fetch
url: https://example.com/blog
selector: article-body
selector_type: id
Extract with Complex CSS Selector
custom-fetch
url: https://example.com/documentation
selector: .content-wrapper article > section:first-child
selector_type: css
Contributing
This project, burnworks_mcp_server_fetch,
was developed as a fork of the original mcp-server-fetch with added CSS selector functionality. The original project can be found at:
https://github.com/modelcontextprotocol/servers
If you'd like to contribute to this enhanced version, feel free to submit issues or pull requests to our repository. For information about the base MCP servers architecture and implementation patterns, please refer to the original project link above.
License
This project is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
MCP Package Docs Server
Facilitates LLMs to efficiently access and fetch structured documentation for packages in Go, Python, and NPM, enhancing software development with multi-language support and performance optimization.
Claude Code MCP
An implementation of Claude Code as a Model Context Protocol server that enables using Claude's software engineering capabilities (code generation, editing, reviewing, and file operations) through the standardized MCP interface.
@kazuph/mcp-taskmanager
Model Context Protocol server for Task Management. This allows Claude Desktop (or any MCP client) to manage and execute tasks in a queue-based system.
Linear MCP Server
Enables interaction with Linear's API for managing issues, teams, and projects programmatically through the Model Context Protocol.
mermaid-mcp-server
A Model Context Protocol (MCP) server that converts Mermaid diagrams to PNG images.
Jira-Context-MCP
MCP server to provide Jira Tickets information to AI coding agents like Cursor

Linear MCP Server
A Model Context Protocol server that integrates with Linear's issue tracking system, allowing LLMs to create, update, search, and comment on Linear issues through natural language interactions.

Sequential Thinking MCP Server
This server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.