Some checks failed
CI / Check / macos-latest (push) Has been cancelled
CI / Check / ubuntu-latest (push) Has been cancelled
CI / Check / windows-latest (push) Has been cancelled
CI / Test / macos-latest (push) Has been cancelled
CI / Test / ubuntu-latest (push) Has been cancelled
CI / Test / windows-latest (push) Has been cancelled
CI / Clippy (push) Has been cancelled
CI / Format (push) Has been cancelled
CI / Security Audit (push) Has been cancelled
CI / Secrets Scan (push) Has been cancelled
CI / Install Script Smoke Test (push) Has been cancelled
29 lines
801 B
TOML
29 lines
801 B
TOML
id = "exa-search"
|
|
name = "Exa Search"
|
|
description = "Perform AI-powered neural searches and retrieve web content through the Exa MCP server"
|
|
category = "ai"
|
|
icon = "🔎"
|
|
tags = ["search", "web", "ai", "neural", "semantic", "information-retrieval"]
|
|
|
|
[transport]
|
|
type = "stdio"
|
|
command = "npx"
|
|
args = ["@modelcontextprotocol/server-exa"]
|
|
|
|
[[required_env]]
|
|
name = "EXA_API_KEY"
|
|
label = "Exa API Key"
|
|
help = "An API key from the Exa dashboard"
|
|
is_secret = true
|
|
get_url = "https://dashboard.exa.ai/api-keys"
|
|
|
|
[health_check]
|
|
interval_secs = 60
|
|
unhealthy_threshold = 3
|
|
|
|
setup_instructions = """
|
|
1. Go to https://dashboard.exa.ai/ and create an account or sign in.
|
|
2. Navigate to API Keys (https://dashboard.exa.ai/api-keys) and generate a new key.
|
|
3. Paste the API key into the EXA_API_KEY field above.
|
|
"""
|