@kazuph/mcp-fetch
by kazuph
fetch
Retrieves URLs from the Internet and extracts their content as markdown. If images are found, they are merged vertically (max 6 images per group, max height 8000px, max size 30MB per group) and copied to the clipboard of the user's host machine. You will need to paste (Cmd+V) to insert the images.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
maxLength | No | ||
raw | No | ||
startIndex | No | ||
url | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"maxLength": {
"default": 20000,
"exclusiveMinimum": 0,
"maximum": 1000000,
"type": "number"
},
"raw": {
"default": false,
"type": "boolean"
},
"startIndex": {
"default": 0,
"minimum": 0,
"type": "number"
},
"url": {
"format": "uri",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}