Files
skald-connectors/connectors/exa/connector.json
T
dguiducci 3440890d11 Migliorate llm_short_description per tutti i connector — tool names espliciti
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.
2026-07-22 22:21:52 +01:00

56 lines
1.8 KiB
JSON

{
"id": "exa",
"name": "Exa",
"version": 2,
"version_string": "1.0.1",
"version_release_date": "2026-07-21",
"type": "mcp_remote",
"scope": "global",
"tags": [
"search",
"mcp",
"remote",
"ai"
],
"docs": [
{
"lang": "en",
"description": "AI-powered web search, content extraction, and embeddings via Exa's neural search engine. Perfect for deep research, finding specific information, and analyzing page content. Works without an API key (free rate-limited tier) \u2014 add your own key for higher limits.",
"llm_short_description": "Exa neural search engine: semantic web search and content extraction. Tools: web_search_exa (semantic/keyword search with domain filter, date range, result count), web_fetch_exa (extract full content + metadata from URLs). Best for semantic search that understands intent, not just keywords. Free tier available without API key."
}
],
"auth": {
"type": "api_key"
},
"env": [
{
"name": "exaApiKey",
"label": "Exa API key (optional)",
"description": "Get one at https://dashboard.exa.ai/api-keys. Without it, Exa works with free rate limits. Add your key for unlimited production use.",
"required": false,
"secret": true,
"example": "exa-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
}
],
"mcp_config": {
"url": "https://mcp.exa.ai/mcp?exaApiKey={SECRET:exaApiKey}",
"transport": "streamable-http"
},
"verify": {
"command": "python3 verify.py",
"timeout_secs": 15
},
"homepage": "https://exa.ai",
"icon_small": "icon_sm.png",
"icon_large": "icon_lg.png",
"tools": [
{
"name": "web_search_exa",
"display_name": "Web Search"
},
{
"name": "web_fetch_exa",
"display_name": "Web Fetch"
}
]
}