-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.07 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.07 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
48
49
50
51
{
"name": "reflect-mcp",
"version": "1.0.17",
"description": "MCP server for Reflect Notes - connect your notes to Claude Desktop. Just run: npx reflect-mcp",
"type": "module",
"main": "dist/server.js",
"types": "dist/server.d.ts",
"bin": {
"reflect-mcp": "./dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"start": "node dist/cli.js",
"prepublishOnly": "npm run build",
"postinstall": "npm rebuild better-sqlite3 || true"
},
"keywords": [
"mcp",
"reflect",
"claude",
"ai",
"notes",
"model-context-protocol"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": ""
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.1",
"better-sqlite3": "^11.10.0",
"fastmcp": "^3.25.4",
"reflect-mcp": "^1.0.16",
"zod": "^4.1.13"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.0.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}