- 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
56 lines
1.5 KiB
JSON
56 lines
1.5 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": "Search the web and extract page content using Exa's neural search engine. Tools: web_search_exa, web_fetch_exa."
|
|
}
|
|
],
|
|
"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"
|
|
}
|
|
]
|
|
} |