Files
skald-connectors/connectors/http-fetch/connector.json
T
dguiducci 3440890d11 Migliorate llm_short_description per tutti i connector — tool names espliciti
Ogni connector.json ora ha una llm_short_description che elenca i tool
specifici che espone, così l'LLM sa esattamente cosa attivare (lazy load).

SKALD.md: documentata criticità del campo llm_short_description
nel system prompt dell'LLM.
2026-07-22 22:21:52 +01:00

74 lines
2.0 KiB
JSON

{
"id": "http-fetch",
"name": "HTTP Fetch",
"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 \u2014 fetch any URL (no API key, no cost). Tools: fetch_html (raw HTML), fetch_markdown (HTML\u2192Markdown conversion), fetch_txt (plain text extraction), fetch_json (JSON endpoints), fetch_readable (Mozilla Readability \u2014 strips ads/nav, best for articles), fetch_youtube_transcript (extract captions from YouTube videos). Prefer this over Exa/Firecrawl for simple URL reads."
}
],
"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"
],
"version": 2,
"version_string": "1.0.1",
"version_release_date": "2026-07-21",
"tools": [
{
"name": "fetch_html",
"display_name": "Fetch as HTML"
},
{
"name": "fetch_markdown",
"display_name": "Fetch as Markdown"
},
{
"name": "fetch_txt",
"display_name": "Fetch as Text"
},
{
"name": "fetch_json",
"display_name": "Fetch as JSON"
},
{
"name": "fetch_readable",
"display_name": "Fetch Readable Content"
},
{
"name": "fetch_youtube_transcript",
"display_name": "Get YouTube Transcript"
}
]
}