@attendance-engine/mcp 0.1.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/LICENSE +21 -0
- package/README.md +272 -0
- package/dist/chunk-UACYGW4C.js +489 -0
- package/dist/chunk-UACYGW4C.js.map +1 -0
- package/dist/cli.cjs +501 -0
- package/dist/cli.cjs.map +1 -0
- package/dist/cli.d.cts +1 -0
- package/dist/cli.d.ts +1 -0
- package/dist/cli.js +15 -0
- package/dist/cli.js.map +1 -0
- package/dist/index.cjs +491 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +19 -0
- package/dist/index.d.ts +19 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -0
- package/package.json +82 -0
package/package.json
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@attendance-engine/mcp",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Model Context Protocol server giving AI agents tools for workforce attendance, overtime, overnight handling, rosters, and wage-and-hour compliance via @attendance-engine/core.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"mcp",
|
|
7
|
+
"model-context-protocol",
|
|
8
|
+
"attendance",
|
|
9
|
+
"workforce",
|
|
10
|
+
"ai-agents",
|
|
11
|
+
"claude",
|
|
12
|
+
"cursor",
|
|
13
|
+
"anthropic",
|
|
14
|
+
"openai",
|
|
15
|
+
"hr",
|
|
16
|
+
"payroll",
|
|
17
|
+
"wage-and-hour",
|
|
18
|
+
"compliance",
|
|
19
|
+
"typescript"
|
|
20
|
+
],
|
|
21
|
+
"license": "MIT",
|
|
22
|
+
"author": "Md. Arifur Rahman <arifur.rahman210@gmail.com>",
|
|
23
|
+
"homepage": "https://github.com/arifur9993/attendance-engine-mcp#readme",
|
|
24
|
+
"bugs": {
|
|
25
|
+
"url": "https://github.com/arifur9993/attendance-engine-mcp/issues"
|
|
26
|
+
},
|
|
27
|
+
"repository": {
|
|
28
|
+
"type": "git",
|
|
29
|
+
"url": "git+https://github.com/arifur9993/attendance-engine-mcp.git"
|
|
30
|
+
},
|
|
31
|
+
"type": "module",
|
|
32
|
+
"main": "./dist/index.cjs",
|
|
33
|
+
"module": "./dist/index.js",
|
|
34
|
+
"types": "./dist/index.d.ts",
|
|
35
|
+
"exports": {
|
|
36
|
+
".": {
|
|
37
|
+
"types": "./dist/index.d.ts",
|
|
38
|
+
"import": "./dist/index.js",
|
|
39
|
+
"require": "./dist/index.cjs"
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"bin": {
|
|
43
|
+
"attendance-engine-mcp": "./dist/cli.js"
|
|
44
|
+
},
|
|
45
|
+
"files": [
|
|
46
|
+
"dist",
|
|
47
|
+
"README.md",
|
|
48
|
+
"LICENSE"
|
|
49
|
+
],
|
|
50
|
+
"sideEffects": false,
|
|
51
|
+
"publishConfig": {
|
|
52
|
+
"access": "public"
|
|
53
|
+
},
|
|
54
|
+
"scripts": {
|
|
55
|
+
"build": "tsup",
|
|
56
|
+
"prepack": "tsup",
|
|
57
|
+
"test": "vitest run",
|
|
58
|
+
"test:cov": "vitest run --coverage",
|
|
59
|
+
"typecheck": "tsc --noEmit",
|
|
60
|
+
"dev": "tsup --watch",
|
|
61
|
+
"start": "node dist/cli.js"
|
|
62
|
+
},
|
|
63
|
+
"engines": {
|
|
64
|
+
"node": ">=18"
|
|
65
|
+
},
|
|
66
|
+
"packageManager": "pnpm@9.12.0",
|
|
67
|
+
"dependencies": {
|
|
68
|
+
"@modelcontextprotocol/sdk": "^1.18.0",
|
|
69
|
+
"zod": "^3.23.8"
|
|
70
|
+
},
|
|
71
|
+
"peerDependencies": {
|
|
72
|
+
"@attendance-engine/core": ">=0.4.0 <1.0.0"
|
|
73
|
+
},
|
|
74
|
+
"devDependencies": {
|
|
75
|
+
"@attendance-engine/core": "^0.4.0",
|
|
76
|
+
"@types/node": "^20.16.13",
|
|
77
|
+
"@vitest/coverage-v8": "^2.1.4",
|
|
78
|
+
"tsup": "^8.3.5",
|
|
79
|
+
"typescript": "^5.6.3",
|
|
80
|
+
"vitest": "^2.1.4"
|
|
81
|
+
}
|
|
82
|
+
}
|