workday-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/.claude-plugin/marketplace.json +29 -0
- package/.claude-plugin/plugin.json +16 -0
- package/.mcp.json +8 -0
- package/LICENSE +21 -0
- package/README.md +59 -0
- package/SKILL.md +88 -0
- package/dist/bundle.js +38524 -0
- package/package.json +55 -0
- package/server.json +40 -0
package/package.json
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "workday-mcp",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"mcpName": "io.github.chrischall/workday-mcp",
|
|
5
|
+
"description": "Workday MCP server for Claude — developed and maintained by AI (Claude Code)",
|
|
6
|
+
"author": "Claude Code (AI) <https://www.anthropic.com/claude>",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/chrischall/workday-mcp.git"
|
|
10
|
+
},
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"keywords": [
|
|
13
|
+
"mcp",
|
|
14
|
+
"model-context-protocol",
|
|
15
|
+
"claude",
|
|
16
|
+
"ai",
|
|
17
|
+
"workday",
|
|
18
|
+
"hr",
|
|
19
|
+
"payroll",
|
|
20
|
+
"benefits"
|
|
21
|
+
],
|
|
22
|
+
"type": "module",
|
|
23
|
+
"bin": {
|
|
24
|
+
"workday-mcp": "dist/bundle.js"
|
|
25
|
+
},
|
|
26
|
+
"files": [
|
|
27
|
+
"dist",
|
|
28
|
+
".claude-plugin",
|
|
29
|
+
".mcp.json",
|
|
30
|
+
"server.json",
|
|
31
|
+
"SKILL.md"
|
|
32
|
+
],
|
|
33
|
+
"scripts": {
|
|
34
|
+
"build": "tsc --noEmit && npm run bundle",
|
|
35
|
+
"bundle": "esbuild src/index.ts --bundle --platform=node --format=esm --banner:js='import { createRequire as __createRequire } from \"module\"; const require = __createRequire(import.meta.url);' --outfile=dist/bundle.js",
|
|
36
|
+
"dev": "node dist/bundle.js",
|
|
37
|
+
"test": "vitest run",
|
|
38
|
+
"test:watch": "vitest",
|
|
39
|
+
"test:coverage": "vitest run --coverage"
|
|
40
|
+
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"@chrischall/mcp-utils": "^0.10.0",
|
|
43
|
+
"@fetchproxy/server": "^1.0.0",
|
|
44
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
45
|
+
"zod": "^4.4.3"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@types/node": "^25.9.1",
|
|
49
|
+
"@vitest/coverage-v8": "^4.1.7",
|
|
50
|
+
"esbuild": "^0.28.1",
|
|
51
|
+
"tsx": "^4.19.0",
|
|
52
|
+
"typescript": "^6.0.3",
|
|
53
|
+
"vitest": "^4.1.7"
|
|
54
|
+
}
|
|
55
|
+
}
|
package/server.json
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
+
"name": "io.github.chrischall/workday-mcp",
|
|
4
|
+
"description": "Read-only Workday for Claude — fetch tasks, pay, benefits via your signed-in session",
|
|
5
|
+
"repository": {
|
|
6
|
+
"url": "https://github.com/chrischall/workday-mcp",
|
|
7
|
+
"source": "github"
|
|
8
|
+
},
|
|
9
|
+
"version": "0.1.0",
|
|
10
|
+
"packages": [
|
|
11
|
+
{
|
|
12
|
+
"registryType": "npm",
|
|
13
|
+
"identifier": "workday-mcp",
|
|
14
|
+
"version": "0.1.0",
|
|
15
|
+
"transport": {
|
|
16
|
+
"type": "stdio"
|
|
17
|
+
},
|
|
18
|
+
"environmentVariables": [
|
|
19
|
+
{
|
|
20
|
+
"name": "WORKDAY_TENANT",
|
|
21
|
+
"description": "Workday tenant slug, e.g. `acme` for https://wd5.myworkday.com/acme.",
|
|
22
|
+
"isRequired": true,
|
|
23
|
+
"format": "string"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"name": "WORKDAY_HOST",
|
|
27
|
+
"description": "Workday data-center host (default wd5.myworkday.com).",
|
|
28
|
+
"isRequired": false,
|
|
29
|
+
"format": "string"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "WORKDAY_WS_PORT",
|
|
33
|
+
"description": "Override the fetchproxy WebSocket port (default 37149).",
|
|
34
|
+
"isRequired": false,
|
|
35
|
+
"format": "string"
|
|
36
|
+
}
|
|
37
|
+
]
|
|
38
|
+
}
|
|
39
|
+
]
|
|
40
|
+
}
|