Files
skald-connectors/connectors/firecrawl/connector.json
T
dguiducci 7039816b73 Add versioning schema: version (int), version_string, version_release_date to all 10 connectors
- version: intero per-connector (parte da 1)
- version_string: semver ereditato (display only)
- version_release_date: ISO 8601 (display only)
- Campi identici in index (connectors.json) e manifest (connector.json)
- Aggiunto connector.json alle files[] di gmail, gcal, email, ssh, tavily
- Aggiornata documentazione in SKALD.md
2026-07-19 10:23:22 +01:00

67 lines
2.5 KiB
JSON

{
"id": "firecrawl",
"name": "Firecrawl",
"type": "mcp_local",
"launch_command": "npx -y firecrawl-mcp",
"transport": "stdio",
"requires": [
"NODE"
],
"dependencies": [],
"env": [
{
"name": "FIRECRAWL_API_KEY",
"label": "Firecrawl API key",
"description": "Create one at https://www.firecrawl.dev (dashboard \u2192 API Keys).",
"required": true,
"secret": true,
"example": "fc-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}
],
"setup_instructions": [
"Ensure Node.js is installed.",
"Get an API key from https://www.firecrawl.dev/app/api-keys.",
"No pip install needed \u2014 Firecrawl MCP runs via npx."
],
"docs": [
{
"lang": "en",
"description": "Web scraping, crawling, search, deep research, and autonomous browsing \u2014 extract content from any website via Firecrawl. Scrape single URLs into clean Markdown, map site structures, crawl entire domains with scheduling, search the web, extract structured data with LLM-powered extraction, and run autonomous research agents. Includes monitoring for crawl changes.",
"llm_short_description": "Scrape, crawl, search, research and extract web data via Firecrawl. 26 tools. Requires API key + Node.js."
}
],
"auth": {
"type": "api_key"
},
"mcp_config": {
"command": "npx",
"args": [
"-y",
"firecrawl-mcp"
],
"env": {
"FIRECRAWL_API_KEY": "{SECRET:FIRECRAWL_API_KEY}"
}
},
"verify": {
"command": "node -e \"const k = process.env.FIRECRAWL_API_KEY; if (!k || k.length < 10) { process.exit(1); } try { fetch('https://api.firecrawl.dev/v1/scrape', {method:'POST', headers:{'Content-Type':'application/json','Authorization':'Bearer '+k}, body:JSON.stringify({url:'https://example.com',formats:['markdown']})}).then(r=>r.json()).then(d=>{if(d.success) {console.log(JSON.stringify({ok:true,message:'Firecrawl API key valid \u2014 scrape probe successful'}))} else {console.log(JSON.stringify({ok:false,message:d.error||'API probe failed'}));process.exit(1)}}).catch(e=>{console.log(JSON.stringify({ok:false,message:e.message}));process.exit(1)}) } catch(e) { console.log(JSON.stringify({ok:false,message:e.message})); process.exit(1) }\"",
"timeout_secs": 20
},
"homepage": "https://www.firecrawl.dev",
"icon_small": "icon_sm.png",
"icon_large": "icon_lg.png",
"scope": "global",
"tags": [
"scraping",
"crawling",
"search",
"mcp",
"local",
"browser",
"research"
],
"version": 1,
"version_string": "1.0.0",
"version_release_date": "2026-07-19"
}