Fetch Service MCP Integration
Provides Fetch capability via the MCP protocol to fetch web content and process images based on the web URL.
Usage Instructions
Fetch MCP Server Reference Documentation
🗺️ Feature List
| Tool Identifier | Function Description | Core Parameters |
|---|---|---|
fetch | Retrieves URL content from the internet and converts it to markdown, with image processing capability. | url, maxLength, enableFetchImages |
Repository URL
https://github.com/smithery-ai/mcp-fetch
🔌 Usage
Parameter Description
fetch
Retrieves URL from the internet and extracts its content as markdown. Images are automatically processed and prepared for clipboard operations.
| Input Parameter | Type | Description |
|---|---|---|
| url | string | The URL from which to retrieve content |
| maxLength | optional number | The maximum length of returned content (default: 20000) |
| startIndex | optional number | The starting position of the content |
| imageStartIndex | optional number | Start index for image collection |
| raw | optional boolean | Returns raw content instead of processed markdown |
| imageMaxCount | optional number | Maximum number of images processed per request (default: 3) |
| imageMaxHeight | optional number | Maximum height of merged images (default: 4000) |
| imageMaxWidth | optional string | Maximum width of merged images (default: 1000) |
| imageQuality | optional number | JPEG quality (1-100) (default: 80) |
| enableFetchImages | optional boolean | Enable image fetching and processing (default: false) |
| ignoreRobotsTxt | optional boolean | Ignore robots.txt restrictions for image processing (default: false) |
Returns: Retrieved content text