-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 888 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 888 Bytes
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
{
"name": "mcp-ical-swift",
"version": "0.1.0",
"type": "module",
"description": "MCP server for Apple Calendar using a compiled Swift EventKit binary — bypasses macOS Sequoia TCC restrictions that block headless processes from accessing calendars",
"author": "Chris Lloyd-Jones <chris@sealjay.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Sealjay/mcp-ical-swift.git"
},
"keywords": [
"mcp",
"apple-calendar",
"eventkit",
"swift",
"macos",
"tcc",
"model-context-protocol",
"claude"
],
"scripts": {
"build": "swiftc -o bin/calendar-reader src/calendar-reader.swift -framework EventKit",
"start": "bun run src/index.ts",
"dev": "bun run --watch src/index.ts",
"test": "bun test"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.29.0",
"zod": "3.24.4"
}
}