forked from exa-labs/exa-mcp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.83 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.83 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
{
"name": "exa-mcp-server",
"version": "3.1.3",
"description": "A Model Context Protocol server with Exa for web search and web crawling. Provides real-time web searches with configurable tool selection, allowing users to enable or disable specific search capabilities. Supports customizable result counts, live crawling options, and returns content from the most relevant websites.",
"mcpName": "io.github.exa-labs/exa-mcp-server",
"type": "module",
"module": "./src/index.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/exa-labs/exa-mcp-server.git"
},
"bin": {
"exa-mcp-server": ".smithery/stdio/index.cjs"
},
"files": [
".smithery"
],
"keywords": [
"mcp",
"search mcp",
"model context protocol",
"exa",
"search",
"websearch",
"claude",
"ai",
"research",
"papers",
"linkedin"
],
"author": "Exa Labs",
"scripts": {
"build": "npm run build:shttp && npm run build:stdio",
"build:stdio": "smithery build src/index.ts --transport stdio -o .smithery/stdio/index.cjs && echo '#!/usr/bin/env node' | cat - .smithery/stdio/index.cjs > temp && mv temp .smithery/stdio/index.cjs && chmod +x .smithery/stdio/index.cjs",
"build:shttp": "smithery build src/index.ts --transport shttp -o .smithery/shttp/index.cjs",
"prepare": "npm run build:stdio",
"watch": "tsc --watch",
"dev": "npx @smithery/cli@latest dev",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"prepublishOnly": "npm run build:stdio"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"agnost": "^0.1.7",
"axios": "^1.7.8",
"zod": "^3.22.4"
},
"devDependencies": {
"@smithery/cli": "^1.4.4",
"@types/node": "^20.11.24",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}