forked from aplaceforallmystuff/mcp-fantastical
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.07 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.07 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
{
"name": "mcp-fantastical",
"version": "1.1.0",
"mcpName": "io.github.aplaceforallmystuff/mcp-fantastical",
"description": "MCP server for Fantastical calendar app - create events, view calendar, and manage schedules",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"mcp-fantastical": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build:native": "./native/build.sh",
"build": "tsc && npm run build:native",
"watch": "tsc --watch",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"fantastical",
"calendar",
"model-context-protocol",
"claude",
"ai",
"applescript",
"macos",
"eventkit"
],
"author": "Jim Christian",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/aplaceforallmystuff/mcp-fantastical.git"
}
}