forked from perplexityai/modelcontextprotocol
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.04 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.04 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
{
"name": "server-perplexity-ask",
"version": "0.1.0",
"description": "MCP server for Perplexity API integration",
"keywords": [
"ai",
"perplexity",
"mcp",
"modelcontextprotocol"
],
"homepage": "https://modelcontextprotocol.io",
"bugs": {
"url": "https://github.com/modelcontextprotocol/servers/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/modelcontextprotocol/servers.git"
},
"license": "MIT",
"author": "Model Context Protocol (https://modelcontextprotocol.io)",
"type": "module",
"main": "dist/index.js",
"bin": {
"mcp-server-perplexity-ask": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "tsc --watch"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.1",
"axios": "^1.6.2",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@types/node": "^20",
"shx": "^0.3.4",
"typescript": "^5.6.2"
},
"engines": {
"node": ">=18"
}
}