-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.6 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.6 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "reclaim-mcp-server",
"version": "0.1.3",
"description": "A Model Context Protocol (MCP) server for interacting with Reclaim.ai tasks.",
"main": "./dist/index.js",
"type": "module",
"bin": {
"reclaim-mcp-server": "./dist/index.js"
},
"scripts": {
"clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"build": "pnpm run clean && tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "vitest run tests/unit",
"test:unit": "vitest run tests/unit",
"test:integration:live": "vitest run tests/integration",
"test:watch": "vitest",
"test:coverage": "vitest run tests/unit --coverage",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"format:check": "biome format .",
"lint:ci": "biome ci .",
"typecheck": "tsc --noEmit && tsc --project tsconfig.test.json",
"prepare": "pnpm run build",
"prepublishOnly": "pnpm run build"
},
"files": ["dist/**/*.js", "dist/**/*.d.ts", "README.md", "LICENSE"],
"keywords": [
"mcp",
"model-context-protocol",
"reclaim",
"reclaim.ai",
"tasks",
"productivity",
"llm",
"ai",
"automation"
],
"author": "John J. Hughes, III",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/johnjhughes/reclaim-mcp-server.git"
},
"bugs": {
"url": "https://github.com/johnjhughes/reclaim-mcp-server/issues"
},
"homepage": "https://github.com/johnjhughes/reclaim-mcp-server#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.2",
"axios": "^1.9.0",
"dotenv": "^16.5.0",
"zod": "^3.24.3"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^22.15.2",
"@vitest/coverage-v8": "3.1.2",
"nock": "^14.0.4",
"typescript": "^5.8.3",
"vitest": "^3.1.2"
},
"engines": {
"node": ">=18.0.0"
},
"mcp": {
"serverInfo": {
"displayName": "Reclaim.ai Task Server"
},
"setup_args": {
"RECLAIM_API_KEY": {
"description": "Your Reclaim.ai API token. Required to connect to your Reclaim account. Found in Reclaim settings > Integrations > API Keys.",
"type": "string",
"required": true,
"input": {
"type": "secret",
"placeholder": "e.g., 6dac21c9-ca90-4412-9d06-d4c242d3b9c6",
"label": "Reclaim.ai API Token"
}
}
}
},
"packageManager": "pnpm@10.19.0+sha512.c9fc7236e92adf5c8af42fd5bf1612df99c2ceb62f27047032f4720b33f8eacdde311865e91c411f2774f618d82f320808ecb51718bfa82c060c4ba7c76a32b8"
}