-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
51 lines (51 loc) · 1.39 KB
/
package.json
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
{
"name": "exa-mcp-server",
"version": "0.3.6",
"description": "A Model Context Protocol server with Exa for web search, academic paper search, and Twitter/X.com search. 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.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/exa-labs/exa-mcp-server.git"
},
"bin": {
"exa-mcp-server": "./build/index.js"
},
"files": [
"build"
],
"keywords": [
"mcp",
"model context protocol",
"exa",
"websearch",
"claude",
"ai",
"research",
"papers",
"twitter",
"x.com"
],
"author": "Exa Labs",
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.7.0",
"axios": "^1.7.8",
"dotenv": "^16.4.5",
"yargs": "^17.7.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.11.24",
"@types/yargs": "^17.0.33",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}