-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.63 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@cueapi/mcp",
"version": "0.4.1",
"mcpName": "io.github.govindkavaturi-art/cueapi-mcp",
"description": "Official Model Context Protocol (MCP) server for CueAPI — give your AI agent a scheduler and verification gate. Open-source execution accountability primitive for AI agents.",
"type": "module",
"bin": {
"cueapi-mcp": "./dist/index.js"
},
"main": "./dist/index.js",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "vitest run",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"cueapi",
"ai-agents",
"agent-infrastructure",
"scheduling",
"cron",
"verification",
"accountability",
"llm",
"claude",
"gpt",
"gemini"
],
"author": "Vector Apps Inc",
"license": "MIT",
"homepage": "https://cueapi.ai",
"repository": {
"type": "git",
"url": "https://github.com/cueapi/cueapi-mcp.git"
},
"bugs": {
"url": "https://github.com/cueapi/cueapi-mcp/issues"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"better-sqlite3": "^12.9.0",
"express": "^5.2.1",
"zod": "^3.23.0",
"zod-to-json-schema": "^3.24.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/express": "^5.0.0",
"@types/node": "^25.6.0",
"supertest": "^7.0.0",
"@types/supertest": "^7.2.0",
"tsx": "^4.19.0",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
}
}