-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 934 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
40
41
42
43
{
"name": "@superfaceai/mcp",
"version": "0.1.0",
"description": "Superface tools for Model Context Protocol",
"author": "Superface Team <[email protected]>",
"license": "MIT",
"homepage": "https://superface.ai",
"repository": {
"type": "git",
"url": "https://github.com/superfaceai/mcp.git"
},
"keywords": [
"ai",
"agents",
"tools"
],
"main": "dist/index.js",
"type": "module",
"bin": {
"mcp-server-superface": "dist/index.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsup",
"watch": "tsup --watch",
"start": "node dist/index.js",
"inspector": "npx @modelcontextprotocol/inspector dist/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.1.0",
"superface": "^0.1.0-rc.7"
},
"devDependencies": {
"@types/node": "^22.10.5",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"files": [
"dist"
]
}