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
|
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@karakeep/mcp",
"version": "0.29.0",
"description": "MCP server for Karakeep",
"license": "GNU Affero General Public License version 3",
"type": "module",
"keywords": [
"hoarder",
"karakeep",
"mcp"
],
"bin": {
"karakeep-mcp": "dist/index.js"
},
"devDependencies": {
"@karakeep/prettier-config": "workspace:^0.1.0",
"@karakeep/tsconfig": "workspace:^0.1.0",
"@tsconfig/node22": "^22.0.0",
"@types/turndown": "^5.0.5",
"shx": "^0.4.0",
"tsx": "^4.8.1",
"vite": "^7.0.6"
},
"scripts": {
"build": "vite build && shx chmod +x dist/index.js",
"run": "tsx src/index.ts",
"lint": "oxlint .",
"lint:fix": "oxlint . --fix",
"format": "prettier . --cache --ignore-path ../../.prettierignore --check",
"format:fix": "prettier . --cache --write --ignore-path ../../.prettierignore",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/karakeep-app/karakeep.git",
"directory": "apps/mcp"
},
"prettier": "@karakeep/prettier-config",
"dependencies": {
"@karakeep/sdk": "workspace:*",
"@modelcontextprotocol/sdk": "^1.9.0",
"turndown": "^7.2.0",
"zod": "^3.24.2"
}
}
|