Fetch MCP Server
by Anthropic ยท โญ 2.6k stars ยท updated 1 months ago
Web content fetching and conversion for efficient LLM usage. Fetch any URL, extract clean text, convert HTML to markdown, and retrieve web pages as structured content.
90
Excellent
Quality Score Breakdown
maintenance95/100
community87/100
documentation90/100
compatibility88/100
Use Cases
- โfetch web pages
- โextract content
- โconvert HTML to markdown
- โweb scraping
โก One-Click Install Configs
Copy the config below and paste it into your AI client's config file.
๐ค Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"fetch": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fetch"
]
}
}
}โก Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"fetch": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fetch"
]
}
}
}๐ VS Code
.vscode/mcp.json
{
"mcp": {
"servers": {
"fetch": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fetch"
]
}
}
}
}