Both connectors declared `mcp_config: {command: "npx", args: ["-y", "<pkg>"]}`
and shipped no code at all. Skald treats a mcp_local `args[0]` as the *name of
the file to run*, not as an argument: install stores `script_path = "<id>/-y"`
and global_enable launches `npx /…/connectors/<id>/-y`, a path that does not
exist. The server never answered `initialize`, so start_server failed — and
since global_enable still returns 200 with an `error` in the body, the UI showed
the connector as enabled while `render_mcp_list` (built from the live runtime)
left it out of the agent's system context entirely.
Ship a two-file wrapper instead: a package.json pinning the upstream package
(mcp-fetch-server@1.1.2, firecrawl-mcp@3.23.7) and an index.js importing it for
its side effect, so `node index.js` is a real local_script and
ensure_installed_host installs the deps beside it. No node_modules, no lockfile.
Also: drop the legacy `launch_command` / top-level `transport` / `dependencies`
fields; drop firecrawl's inert `mcp_config.env` placeholder (same case as gmaps
— tokens are only substituted in the URL); add firecrawl_developer_search to
firecrawl's tools[] and API_KEY to its requires; realign manifest and fragment
versions to 5 / 1.1.0 (they were 2 vs 4, so no Update badge could ever appear).
Verified end-to-end against the shipped files by reproducing Skald's own path:
`npm ci || npm install --omit=dev` then `node <abs>/index.js` — initialize,
tools/list and a real tools/call, JSON-RPC only on stdout.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
54 lines
1.1 KiB
JSON
54 lines
1.1 KiB
JSON
{
|
|
"id": "http-fetch",
|
|
"name": "HTTP Fetch",
|
|
"type": "mcp_local",
|
|
"scope": "global",
|
|
"icon_small": "http-fetch/icon_sm.svg",
|
|
"icon_large": "http-fetch/icon_lg.svg",
|
|
"user_description": "Fetch any URL as HTML, Markdown, text, JSON, or YouTube transcripts \u2014 free, no API key, no rate limits.",
|
|
"requires": [
|
|
"NODE"
|
|
],
|
|
"tags": [
|
|
"http",
|
|
"fetch",
|
|
"mcp",
|
|
"local",
|
|
"free",
|
|
"scraping",
|
|
"youtube"
|
|
],
|
|
"auth": {
|
|
"type": "none"
|
|
},
|
|
"folder": "http-fetch",
|
|
"version": 5,
|
|
"version_string": "1.1.0",
|
|
"version_release_date": "2026-08-10",
|
|
"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"
|
|
}
|
|
]
|
|
} |