Skip to content

Commit 7af8c2b

Browse files
its-mashclaude
andcommitted
feat: add Exa Search MCP server definition
Adds community.exa-search - AI-powered semantic web search via the Exa API. Stdio transport with npx, requires EXA_API_KEY. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent d1461ed commit 7af8c2b

1 file changed

Lines changed: 64 additions & 0 deletions

File tree

servers/community.exa-search.json

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "community.exa-search",
4+
"name": "Exa Search",
5+
"alias": "exa",
6+
"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.",
7+
"icon": "🔎",
8+
"schema_version": "2.1",
9+
"categories": ["search", "ai-ml"],
10+
"tags": ["exa", "search", "web-search", "semantic-search", "ai-search", "research"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "npx",
15+
"args": ["-y", "exa-mcp-server"],
16+
"env": {
17+
"EXA_API_KEY": "${input:EXA_API_KEY}"
18+
},
19+
"metadata": {
20+
"inputs": [
21+
{
22+
"id": "EXA_API_KEY",
23+
"label": "Exa API Key",
24+
"description": "API key for the Exa Search API",
25+
"type": "password",
26+
"required": true,
27+
"secret": true,
28+
"placeholder": "exa-...",
29+
"obtain": {
30+
"url": "https://dashboard.exa.ai/api-keys",
31+
"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",
32+
"button_label": "Get API Key"
33+
}
34+
}
35+
]
36+
}
37+
},
38+
39+
"auth": {
40+
"type": "api_key",
41+
"instructions": "Get an Exa API key at dashboard.exa.ai/api-keys"
42+
},
43+
44+
"contributor": {
45+
"name": "Exa",
46+
"github": "exa-labs",
47+
"url": "https://exa.ai"
48+
},
49+
50+
"links": {
51+
"repository": "https://github.com/exa-labs/exa-mcp-server",
52+
"homepage": "https://exa.ai",
53+
"documentation": "https://docs.exa.ai"
54+
},
55+
56+
"platforms": ["all"],
57+
58+
"capabilities": {
59+
"tools": true,
60+
"resources": false,
61+
"prompts": false,
62+
"read_only_mode": true
63+
}
64+
}

0 commit comments

Comments
 (0)