Files
skald-connectors/connectors/tavily/connector.json
T

36 lines
955 B
JSON

{
"id": "tavily",
"name": "Tavily",
"version": "1.0.0",
"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"]
}