# Web Fetch & Scraping MCP Server
> Package: `@modelcontextprotocol/server-fetch`
> Tools Exposed: fetch_url
> URL: https://agentnow.in/mcp/fetch-web-mcp-server

## Description
Converts arbitrary web pages, documentation, and HTML to clean Markdown for agent reading.

## Installation CLI
```bash
npx -y @modelcontextprotocol/server-fetch
```

## Claude Desktop Configuration (claude_desktop_config.json)
```json
{
  "mcpServers": {
    "fetch": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-fetch"
      ]
    }
  }
}
```

## Cursor Configuration (.cursor/mcp.json)
```json
{
  "mcpServers": {
    "fetch": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-fetch"
      ]
    }
  }
}
```
