{ "server_info": { "name": "zcaceres/fetch", "description": null, "repo_url": "https://github.com/zcaceres/fetch-mcp", "server_type": "Community Servers", "server_category": [ "Web Scraping" ], "server_version": "0.1.0" }, "tools": [ { "name": "fetch_html", "description": "Fetch a website and return the content as HTML", "input_schema": { "type": "object", "properties": { "url": { "type": "string", "description": "URL of the website to fetch" }, "headers": { "type": "object", "description": "Optional headers to include in the request" } }, "required": [ "url" ] } }, { "name": "fetch_markdown", "description": "Fetch a website and return the content as Markdown", "input_schema": { "type": "object", "properties": { "url": { "type": "string", "description": "URL of the website to fetch" }, "headers": { "type": "object", "description": "Optional headers to include in the request" } }, "required": [ "url" ] } }, { "name": "fetch_txt", "description": "Fetch a website, return the content as plain text (no HTML)", "input_schema": { "type": "object", "properties": { "url": { "type": "string", "description": "URL of the website to fetch" }, "headers": { "type": "object", "description": "Optional headers to include in the request" } }, "required": [ "url" ] } }, { "name": "fetch_json", "description": "Fetch a JSON file from a URL", "input_schema": { "type": "object", "properties": { "url": { "type": "string", "description": "URL of the JSON to fetch" }, "headers": { "type": "object", "description": "Optional headers to include in the request" } }, "required": [ "url" ] } } ], "resources": [], "prompts": [] }