@open-sunsama/mcp 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,39 @@
1
+ {
2
+ "name": "@open-sunsama/mcp",
3
+ "version": "1.0.0",
4
+ "description": "MCP server for Open Sunsama - AI agent task and calendar management",
5
+ "type": "module",
6
+ "bin": {
7
+ "open-sunsama-mcp": "./build/index.js"
8
+ },
9
+ "main": "./build/index.js",
10
+ "scripts": {
11
+ "build": "tsc",
12
+ "dev": "tsc --watch",
13
+ "start": "node build/index.js",
14
+ "test": "bun run tests/test-all.ts",
15
+ "test:tasks": "bun run tests/test-tasks.ts",
16
+ "test:time-blocks": "bun run tests/test-time-blocks.ts",
17
+ "test:subtasks": "bun run tests/test-subtasks.ts",
18
+ "inspector": "npx @modelcontextprotocol/inspector node build/index.js"
19
+ },
20
+ "dependencies": {
21
+ "@modelcontextprotocol/sdk": "^1.0.0",
22
+ "zod": "^3.23.8"
23
+ },
24
+ "devDependencies": {
25
+ "@types/node": "^20.11.0",
26
+ "typescript": "^5.3.0"
27
+ },
28
+ "files": [
29
+ "build"
30
+ ],
31
+ "keywords": [
32
+ "mcp",
33
+ "model-context-protocol",
34
+ "ai",
35
+ "task-management",
36
+ "calendar",
37
+ "sunsama"
38
+ ]
39
+ }