-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 830 Bytes
/
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
{
"name": "tavily-search-mcp-server",
"version": "0.1.0",
"description": "MCP server for Tavily Search API integration",
"license": "MIT",
"author": "Alexandros Pappas",
"keywords": [
"tavily",
"search",
"mcp",
"model-context-protocol",
"llm",
"claude"
],
"type": "module",
"bin": {
"mcp-server-tavily-search": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"start": "node dist/index.js",
"start:sse": "node dist/sse.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.0.1",
"express": "^4.21.1"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22",
"shx": "^0.3.4",
"typescript": "^5.6.2"
}
}