-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 840 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 840 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
38
39
40
41
42
{
"name": "@getnote/mcp",
"version": "1.3.2",
"description": "MCP server for Get笔记 (GetNotes) API",
"main": "dist/index.js",
"bin": {
"getnote-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"getnotes",
"get笔记",
"notes",
"ai"
],
"author": "Get笔记",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"axios": "^1.7.0",
"form-data": "^4.0.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
},
"overrides": {
"express-rate-limit": "^8.2.2",
"hono": "^4.12.7",
"path-to-regexp": "^8.4.1"
}
}