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.
67 lines
1.7 KiB
JSON
67 lines
1.7 KiB
JSON
{
|
|
"id": "tavily",
|
|
"name": "Tavily",
|
|
"type": "mcp_remote",
|
|
"mcp_config": {
|
|
"url": "https://mcp.tavily.com/mcp/?tavilyApiKey={SECRET:tavilyApiKey}",
|
|
"transport": "streamable-http"
|
|
},
|
|
"verify": {
|
|
"command": "python3 verify.py",
|
|
"timeout_secs": 15
|
|
},
|
|
"docs": [
|
|
{
|
|
"lang": "en",
|
|
"description": "Real-time web search and page extraction via Tavily.",
|
|
"llm_short_description": "Web search engine: search the web, extract page content, crawl full sites, summarize/aggregate results across multiple queries. Tools: tavily_search (web + news + images), tavily_extract (full page content), tavily_crawl (multi-page crawling), tavily_map (discover URLs on a domain), tavily_research (multi-query research loop). API key required."
|
|
}
|
|
],
|
|
"auth": {
|
|
"type": "api_key"
|
|
},
|
|
"env": [
|
|
{
|
|
"name": "tavilyApiKey",
|
|
"label": "Tavily API key",
|
|
"description": "Create one at https://app.tavily.com (your account dashboard).",
|
|
"required": true,
|
|
"secret": true,
|
|
"example": "tvly-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
|
|
}
|
|
],
|
|
"homepage": "https://tavily.com",
|
|
"icon_small": "icon_sm.png",
|
|
"icon_large": "icon_lg.png",
|
|
"scope": "global",
|
|
"tags": [
|
|
"search",
|
|
"mcp",
|
|
"remote"
|
|
],
|
|
"version": 2,
|
|
"version_string": "1.0.1",
|
|
"version_release_date": "2026-07-21",
|
|
"tools": [
|
|
{
|
|
"name": "tavily_search",
|
|
"display_name": "Web Search"
|
|
},
|
|
{
|
|
"name": "tavily_extract",
|
|
"display_name": "Extract Content"
|
|
},
|
|
{
|
|
"name": "tavily_crawl",
|
|
"display_name": "Crawl Site"
|
|
},
|
|
{
|
|
"name": "tavily_map",
|
|
"display_name": "Map Site"
|
|
},
|
|
{
|
|
"name": "tavily_research",
|
|
"display_name": "Deep Research"
|
|
}
|
|
]
|
|
} |