-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 901 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 901 Bytes
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
{
"name": "@memoryplugin/mcp-server",
"version": "1.4.0",
"description": "MCP server for MemoryPlugin API integration",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/memoryplugin/mcp-server.git"
},
"homepage": "https://www.memoryplugin.com",
"bugs": {
"url": "https://github.com/memoryplugin/mcp-server/issues"
},
"type": "module",
"main": "dist/index.js",
"bin": {
"memoryplugin-mcp-server": "dist/index.js"
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc && shx chmod +x dist/index.js && shx cp dist/index.js dist/cli.js",
"prepare": "npm run build",
"start": "node dist/index.js",
"dev": "tsc --watch"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.9.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"shx": "^0.3.4",
"typescript": "^5.3.0"
}
}