Web content fetching and conversion for efficient LLM usage
The Fetch MCP Server enables your AI assistant to retrieve and process web content for use in conversations. It fetches URLs, converts HTML to markdown, and extracts content in a format optimized for LLM consumption.
Part of the official MCP reference servers, this server handles the common need to bring web content into AI workflows. It supports fetching HTML pages and converting them to clean markdown, as well as fetching raw text and JSON data.
Useful for any workflow where your AI assistant needs to read web pages, API responses, or online documentation.
Add this to your MCP configuration file:
{
"mcpServers": {
"fetch": {
"env": {},
"args": [
"-y",
"@modelcontextprotocol/server-fetch"
],
"command": "npx"
}
}
}Be the first to review this server!