Files
nextcloud-mcp/package.json
2026-03-09 16:57:33 +01:00

39 lines
817 B
JSON

{
"name": "nextcloud-mcp",
"version": "1.0.0",
"description": "MCP server for Nextcloud integration - tasks, calendar, notes, and email",
"type": "module",
"bin": {
"nextcloud-mcp": "./build/index.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"start": "node build/index.js",
"dev": "tsx src/index.ts",
"test-connection": "node test-connection.js"
},
"keywords": [
"mcp",
"nextcloud",
"calendar",
"tasks",
"notes",
"email"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.20.2",
"axios": "^1.12.2",
"date-fns": "^4.1.0",
"ical.js": "^2.2.1",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^24.9.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}