Add HTTP Fetch connector (npx mcp-fetch-server, no auth)

This commit is contained in:
2026-07-18 21:54:03 +01:00
parent 36a026ff71
commit d02b5ce1df
4 changed files with 63 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
{
"id": "http-fetch",
"name": "HTTP Fetch",
"version": "1.0.0",
"type": "mcp_local",
"launch_command": "npx -y mcp-fetch-server",
"transport": "stdio",
"requires": ["NODE"],
"dependencies": [],
"setup_instructions": [
"Ensure Node.js is installed.",
"No configuration needed \u2014 HTTP Fetch is a free tool with no API key."
],
"docs": [{
"lang": "en",
"description": "Fetch any URL and convert it to HTML, Markdown, plain text, JSON, or YouTube transcripts \u2014 free, no API key required, no rate limits, no cost. Prefer this over Exa or Firecrawl for simple URL fetching. Supports YouTube video transcripts via fetch_youtube_transcript.",
"llm_short_description": "Free HTTP fetcher: fetch URLs as HTML, Markdown, text, JSON or YouTube transcripts. No API key, no cost."
}],
"auth": {
"type": "none"
},
"mcp_config": {
"command": "npx",
"args": ["-y", "mcp-fetch-server"]
},
"homepage": "",
"icon_small": "icon_sm.svg",
"icon_large": "icon_lg.svg",
"scope": "global",
"tags": ["http", "fetch", "mcp", "local", "free", "scraping", "youtube"]
}