Back to MCPs
Official
Fetch
Web content fetching and conversion for efficient LLM usage. Retrieve web pages and convert HTML to markdown for easier consumption by Claude.
webfetchhttp+1 more
876 upvotes
32,100 views
by Anthropic
Installation
npx -y @modelcontextprotocol/server-fetch
How to add to Claude Code
- Open Claude Code settings
Run
claude configor edit~/.claude/config.json - Add the MCP server configuration
{ "mcpServers": { "fetch": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-fetch" ] } } } - Restart Claude Code
The MCP server will now be available in your sessions
Related MCP Servers
Puppeteer
OfficialBrowser automation capabilities using Puppeteer. Allows Claude to interact with web pages, take screenshots, and execute JavaScript in a browser environment.
Playwright
OfficialBrowser automation and testing using Playwright. More powerful than Puppeteer with cross-browser support and better reliability for web interactions.