Files
skald-connectors/connectors/tavily/connector.json
T
dguiducci 955b1ba069 feat: friendly tool names per MCP title field or manifest
- Aggiunto campo 'title' a tools/list in tutti gli script MCP locali
  (Gmail, Gcal, Drive, Email, SSH, Weather, Wikipedia, WhatsApp)
- Aggiunto tools[]/display_name nel manifest per connector remoti/package
  esterni (Firecrawl, HTTP Fetch, Exa, Tavily, SerpAPI Flights)
- Documentata convenzione e resolution order in SKALD.md
- Aggiornata manifest_guide.md per tools[] in connectors.json
- Bumped version e sha256 per tutti i 13 connector
2026-07-21 23:43:24 +01:00

67 lines
1.5 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": "Search the web and extract page content through Tavily."
}
],
"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"
}
]
}