-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.12 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.12 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
{
"type": "module",
"name": "togello-mcp-server",
"version": "1.0.24",
"description": "MCP server for Togello tasks, calendar memos, calendar events, and activity logs.",
"main": "build/index.js",
"scripts": {
"build": "tsc && chmod 755 build/index.js",
"codex:preclone": "bash scripts/codex-cloud/preclone.sh",
"start": "node build/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"mcp",
"model-context-protocol",
"togello",
"chatgpt",
"tasks",
"calendar",
"activity"
],
"author": "Toru Takagi",
"license": "ISC",
"homepage": "https://togello.com/sign",
"repository": {
"type": "git",
"url": "git+https://github.com/Toru-Takagi/togello-mcp-server.git"
},
"bugs": {
"url": "https://github.com/Toru-Takagi/togello-mcp-server/issues"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^22.14.1",
"typescript": "^5.8.3"
},
"bin": {
"togello": "build/index.js"
},
"files": ["build"]
}