@kazuph/mcp-fetch
by kazuph
Server Configuration
Describes the environment variables required to run the server.
Name | Required | Description | Default |
---|---|---|---|
No arguments |
Schema
Prompts
Interactive templates invoked by user choice
Name | Description |
---|---|
No prompts |
Resources
Contextual data attached and managed by the client
Name | Description |
---|---|
No resources |
Tools
Functions exposed to the LLM to take actions
Name | Description |
---|---|
fetch | Retrieves URLs from the Internet and extracts their content as markdown. Images from the page will be processed and included with the response automatically. Parameters:
Image Processing:
IMPORTANT: All parameters must be in proper JSON format - use double quotes for keys and string values, and no quotes for numbers and booleans. Examples: Initial fetch:{ "url": "https://example.com", "maxLength": 10000, "imageMaxCount": 2 } Fetch next set of images:{ "url": "https://example.com", "imageStartIndex": 2, "imageMaxCount": 2 } |