-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathcommunity.exa-search.json
More file actions
64 lines (58 loc) · 1.85 KB
/
Copy pathcommunity.exa-search.json
File metadata and controls
64 lines (58 loc) · 1.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"$schema": "../schemas/server-definition.schema.json",
"id": "community.exa-search",
"name": "Exa Search",
"alias": "exa",
"description": "AI-powered web search that understands meaning, not just keywords. Find similar pages, search by content type, and get clean text from any URL.",
"icon": "https://avatars.githubusercontent.com/u/77906174?v=4",
"schema_version": "2.1",
"categories": ["search", "ai-ml"],
"tags": ["exa", "search", "web-search", "semantic-search", "ai-search", "research"],
"transport": {
"type": "stdio",
"command": "npx",
"args": ["-y", "exa-mcp-server"],
"env": {
"EXA_API_KEY": "${input:EXA_API_KEY}"
},
"metadata": {
"inputs": [
{
"id": "EXA_API_KEY",
"label": "Exa API Key",
"description": "API key for the Exa Search API. Free tier available with limited requests.",
"type": "text",
"required": true,
"secret": true,
"placeholder": "exa-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"obtain": {
"url": "https://dashboard.exa.ai/api-keys",
"instructions": "1. Go to dashboard.exa.ai\n2. Sign up or log in to your account\n3. Navigate to API Keys section\n4. Click 'Create API Key'\n5. Copy the generated key",
"button_label": "Get API Key"
}
}
]
}
},
"auth": {
"type": "api_key",
"instructions": "Get an Exa API key at dashboard.exa.ai/api-keys"
},
"contributor": {
"name": "Exa",
"github": "exa-labs",
"url": "https://exa.ai"
},
"links": {
"repository": "https://github.com/exa-labs/exa-mcp-server",
"homepage": "https://exa.ai",
"documentation": "https://docs.exa.ai"
},
"platforms": ["all"],
"capabilities": {
"tools": true,
"resources": false,
"prompts": false,
"read_only_mode": true
}
}