workday-studio-mcp-server 2.0.0 → 2.0.1

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/README.md CHANGED
@@ -1,258 +1,258 @@
1
- # workday-studio-mcp-server
2
-
3
- [![npm version](https://img.shields.io/npm/v/workday-studio-mcp-server.svg)](https://www.npmjs.com/package/workday-studio-mcp-server)
4
- [![Node.js ≥18](https://img.shields.io/badge/node-%3E%3D18-brightgreen.svg)](https://nodejs.org)
5
- [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](./LICENSE)
6
-
7
- > **Enterprise-grade MCP server that connects AI assistants to your local Workday Studio workspace.**
8
-
9
- `workday-studio-mcp-server` is a [Model Context Protocol (MCP)](https://modelcontextprotocol.io) server that lets AI assistants such as **Claude Code**, **VS Code**, **Google Antigravity**,or any MCP-compatible client inspect, validate, initialize, and analyze Workday Studio integration projects **directly on your machine**, without copy-pasting XML back and forth.
10
-
11
- Everything runs **locally**. No network calls. No tenant credentials. No shared state.
12
- The server only sees the Studio workspace folder you point it at.
13
-
14
- ---
15
-
16
- ## Overview
17
-
18
- Workday Studio integrations are built on complex assembly XML, XSL transforms, and custom step types context that is impossible to convey through conversation alone. `workday-studio-mcp-server` bridges that gap by exposing your workspace as structured tools that any AI assistant can call in real time.
19
-
20
- ### Key Capabilities
21
-
22
- - 🔍 **Inspect** Studio projects and integration files
23
- - 📝 **Read / write** `assembly.xml` and XSL transforms
24
- - ✅ **Validate** XML / XSLT well-formedness and Studio-specific rules
25
- - 🏗️ **Scaffold** new integration projects from scratch
26
- - 🔬 **Analyze** assembly flows and launch parameters
27
- - 📋 **Parse** Workday server logs (local files only — no network)
28
- - 🔄 **Update** sub-flows with auto-backup and validation
29
- - 🧠 **Plan** integrations via guided design elicitation
30
-
31
- ---
32
-
33
- ## Features
34
-
35
- | Category | Tools |
36
- |---|---|
37
- | **Navigation** | `list_studio_projects`, `list_project_files`, `read_integration_file`, `search_studio_files`, `get_workspace_structure` |
38
- | **File management** | `write_integration_file`, `copy_file_from_project`, `rename_file`, `delete_file`, `validate_xml_file` |
39
- | **Project setup** | `create_studio_project`, `create_xsl_transform` |
40
- | **Assembly editing** | `list_assembly_steps`, `list_integration_params`, `add_assembly_step`, `update_sub_flow`, `validate_assembly` |
41
- | **Planning** | `plan_integration` |
42
- | **Reference** | `get_step_type_reference` |
43
- | **Diagnostics** | `parse_server_log`|
44
- | **Knowledge** | `log_learning`|
45
-
46
- ---
47
-
48
- ## Requirements
49
-
50
- - **Node.js 18+** — check with `node --version`
51
- - **Workday Studio** installed with at least one project in your workspace
52
- - **An MCP-compatible AI client** — Claude Desktop, Claude Code (CLI), Cursor, or similar
53
-
54
- ---
55
-
56
- ## Quick Start
57
-
58
- ### Option 1 — npx (no install needed)
59
-
60
- Add the following to your MCP client configuration and the package will be downloaded and run automatically via `npx`:
61
-
62
- ```json
63
- {
64
- "mcpServers": {
65
- "workday-studio-mcp-server": {
66
- "command": "npx",
67
- "args": ["workday-studio-mcp-server"],
68
- "env": {
69
- "WORKDAY_STUDIO_WORKSPACE": "C:\\Users\\YourName\\eclipse-workspace"
70
- }
71
- }
72
- }
73
- }
74
- ```
75
-
76
- > **Windows tip:** Use double backslashes `\\` or forward slashes `/` in the path.
77
-
78
- ### Option 2 — Global install
79
-
80
- ```bash
81
- npm install -g workday-studio-mcp-server
82
- ```
83
-
84
- Then reference the installed binary in your MCP config:
85
-
86
- ```json
87
- {
88
- "mcpServers": {
89
- "workday-studio-mcp-server": {
90
- "command": "workday-studio-mcp-server",
91
- "env": {
92
- "WORKDAY_STUDIO_WORKSPACE": "C:\\Users\\YourName\\eclipse-workspace"
93
- }
94
- }
95
- }
96
- }
97
- ```
98
-
99
- ---
100
-
101
- ## Installation
102
-
103
- ### Install via npm
104
-
105
- ```bash
106
- npm install -g workday-studio-mcp-server
107
- ```
108
-
109
- ### Install via npx (zero-install)
110
-
111
- No installation is required. Simply reference `npx workday-studio-mcp-server` in your MCP configuration as shown in the Quick Start section above.
112
-
113
- ---
114
-
115
- ## Usage Examples
116
-
117
- ### Claude Desktop
118
-
119
- Edit the Claude Desktop config file:
120
-
121
- - **Windows:** `%APPDATA%\Claude\claude_desktop_config.json`
122
- - **macOS:** `~/Library/Application Support/Claude/claude_desktop_config.json`
123
-
124
- ```json
125
- {
126
- "mcpServers": {
127
- "workday-studio-mcp-server": {
128
- "command": "npx",
129
- "args": ["workday-studio-mcp-server"],
130
- "env": {
131
- "WORKDAY_STUDIO_WORKSPACE": "C:\\Users\\YourName\\eclipse-workspace"
132
- }
133
- }
134
- }
135
- }
136
- ```
137
-
138
- Save the file and **restart Claude Desktop**.
139
-
140
- ---
141
-
142
- ### Cursor
143
-
144
- Open **Cursor Settings → MCP** and add:
145
-
146
- ```json
147
- {
148
- "mcpServers": {
149
- "workday-studio-mcp-server": {
150
- "command": "npx",
151
- "args": ["workday-studio-mcp-server"],
152
- "env": {
153
- "WORKDAY_STUDIO_WORKSPACE": "C:\\Users\\YourName\\eclipse-workspace"
154
- }
155
- }
156
- }
157
- }
158
- ```
159
-
160
- ---
161
-
162
- ### Claude Code (CLI)
163
-
164
- ```bash
165
- claude mcp add workday-studio-mcp-server \
166
- --command npx \
167
- --args workday-studio-mcp-server \
168
- --env WORKDAY_STUDIO_WORKSPACE=/Users/yourname/eclipse-workspace
169
- ```
170
-
171
- Confirm it is registered:
172
-
173
- ```bash
174
- claude mcp list
175
- ```
176
-
177
- ---
178
-
179
- ## Environment Variables
180
-
181
- | Variable | Description | Required |
182
- |---|---|---|
183
- | `WORKDAY_STUDIO_WORKSPACE` | Absolute path to your Eclipse / Workday Studio workspace folder | ✅ Yes |
184
-
185
- ---
186
-
187
- ## Tool Reference
188
-
189
- ### Navigation
190
-
191
- | Tool | Description |
192
- |---|---|
193
- | `list_studio_projects` | List all projects in the configured workspace |
194
- | `list_project_files` | List files in a specific project, with optional extension filter |
195
- | `read_integration_file` | Read the content of any file in the workspace |
196
- | `search_studio_files` | Full-text search across all workspace files |
197
- | `get_workspace_structure` | Return a tree view of the entire workspace |
198
-
199
- ### File Management
200
-
201
- | Tool | Description |
202
- |---|---|
203
- | `write_integration_file` | Write (create or overwrite) a file in the workspace |
204
- | `copy_file_from_project` | Copy a file between projects |
205
- | `rename_file` | Rename a file within its project |
206
- | `delete_file` | Delete a file (with optional backup) |
207
- | `validate_xml_file` | Validate XML well-formedness of a file |
208
-
209
- ### Project Setup
210
-
211
- | Tool | Description |
212
- |---|---|
213
- | `create_studio_project` | Scaffold a new Workday Studio integration project |
214
- | `create_xsl_transform` | Create a new XSL transform file with boilerplate |
215
-
216
- ### Assembly Operations
217
-
218
- | Tool | Description |
219
- |---|---|
220
- | `list_assembly_steps` | List all steps in an assembly.xml |
221
- | `list_integration_params` | List launch parameters defined in an assembly |
222
- | `add_assembly_step` | Append a new step to an assembly flow |
223
- | `update_sub_flow` | Surgically replace a sub-flow stub with real implementation |
224
- | `validate_assembly` | Run Studio-specific validation rules on an assembly |
225
-
226
- ### Reference & Planning
227
-
228
- | Tool | Description |
229
- |---|---|
230
- | `plan_integration` | Guided design elicitation before writing any XML |
231
- | `get_step_type_reference` | Look up confirmed XML examples for any step type |
232
- | `lookup_soap_operations` | Look up SOAP operations for Workday web services |
233
-
234
- ### Diagnostics
235
-
236
- | Tool | Description |
237
- |---|---|
238
- | `parse_server_log` | Parse a `server-*.log` from `~/Downloads` into structured events |
239
-
240
- ### Knowledge Capture
241
-
242
- | Tool | Description |
243
- |---|---|
244
- | `log_learning` | Persist a Studio pattern or lesson to the shared knowledge base |
245
-
246
- ---
247
-
248
- ## Security
249
-
250
- - The server **only reads/writes files inside your configured workspace path** path-traversal attempts are blocked.
251
- - **No credentials, API keys, or Workday tenant details** are stored or transmitted.
252
- - The server communicates over **stdio only** no network ports are opened.
253
-
254
- ---
255
-
256
- ## License
257
-
258
- THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1
+ # workday-studio-mcp-server
2
+
3
+ [![npm version](https://img.shields.io/npm/v/workday-studio-mcp-server.svg)](https://www.npmjs.com/package/workday-studio-mcp-server)
4
+ [![Node.js ≥18](https://img.shields.io/badge/node-%3E%3D18-brightgreen.svg)](https://nodejs.org)
5
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](./LICENSE)
6
+
7
+ > **Enterprise-grade MCP server that connects AI assistants to your local Workday Studio workspace.**
8
+
9
+ `workday-studio-mcp-server` is a [Model Context Protocol (MCP)](https://modelcontextprotocol.io) server that lets AI assistants such as **Claude Code**, **VS Code**, **Google Antigravity**,or any MCP-compatible client inspect, validate, initialize, and analyze Workday Studio integration projects **directly on your machine**, without copy-pasting XML back and forth.
10
+
11
+ Everything runs **locally**. No network calls. No tenant credentials. No shared state.
12
+ The server only sees the Studio workspace folder you point it at.
13
+
14
+ ---
15
+
16
+ ## Overview
17
+
18
+ Workday Studio integrations are built on complex assembly XML, XSL transforms, and custom step types context that is impossible to convey through conversation alone. `workday-studio-mcp-server` bridges that gap by exposing your workspace as structured tools that any AI assistant can call in real time.
19
+
20
+ ### Key Capabilities
21
+
22
+ - 🔍 **Inspect** Studio projects and integration files
23
+ - 📝 **Read / write** `assembly.xml` and XSL transforms
24
+ - ✅ **Validate** XML / XSLT well-formedness and Studio-specific rules
25
+ - 🏗️ **Scaffold** new integration projects from scratch
26
+ - 🔬 **Analyze** assembly flows and launch parameters
27
+ - 📋 **Parse** Workday server logs (local files only — no network)
28
+ - 🔄 **Update** sub-flows with auto-backup and validation
29
+ - 🧠 **Plan** integrations via guided design elicitation
30
+
31
+ ---
32
+
33
+ ## Features
34
+
35
+ | Category | Tools |
36
+ |---|---|
37
+ | **Navigation** | `list_studio_projects`, `list_project_files`, `read_integration_file`, `search_studio_files`, `get_workspace_structure` |
38
+ | **File management** | `write_integration_file`, `copy_file_from_project`, `rename_file`, `delete_file`, `validate_xml_file` |
39
+ | **Project setup** | `create_studio_project`, `create_xsl_transform` |
40
+ | **Assembly editing** | `list_assembly_steps`, `list_integration_params`, `add_assembly_step`, `update_sub_flow`, `validate_assembly` |
41
+ | **Planning** | `plan_integration` |
42
+ | **Reference** | `get_step_type_reference` |
43
+ | **Diagnostics** | `parse_server_log`|
44
+ | **Knowledge** | `log_learning`|
45
+
46
+ ---
47
+
48
+ ## Requirements
49
+
50
+ - **Node.js 18+** — check with `node --version`
51
+ - **Workday Studio** installed with at least one project in your workspace
52
+ - **An MCP-compatible AI client** — Claude Desktop, Claude Code (CLI), Cursor, or similar
53
+
54
+ ---
55
+
56
+ ## Quick Start
57
+
58
+ ### Option 1 — npx (no install needed)
59
+
60
+ Add the following to your MCP client configuration and the package will be downloaded and run automatically via `npx`:
61
+
62
+ ```json
63
+ {
64
+ "mcpServers": {
65
+ "workday-studio-mcp-server": {
66
+ "command": "npx",
67
+ "args": ["workday-studio-mcp-server"],
68
+ "env": {
69
+ "WORKDAY_STUDIO_WORKSPACE": "C:\\Users\\YourName\\eclipse-workspace"
70
+ }
71
+ }
72
+ }
73
+ }
74
+ ```
75
+
76
+ > **Windows tip:** Use double backslashes `\\` or forward slashes `/` in the path.
77
+
78
+ ### Option 2 — Global install
79
+
80
+ ```bash
81
+ npm install -g workday-studio-mcp-server
82
+ ```
83
+
84
+ Then reference the installed binary in your MCP config:
85
+
86
+ ```json
87
+ {
88
+ "mcpServers": {
89
+ "workday-studio-mcp-server": {
90
+ "command": "workday-studio-mcp-server",
91
+ "env": {
92
+ "WORKDAY_STUDIO_WORKSPACE": "C:\\Users\\YourName\\eclipse-workspace"
93
+ }
94
+ }
95
+ }
96
+ }
97
+ ```
98
+
99
+ ---
100
+
101
+ ## Installation
102
+
103
+ ### Install via npm
104
+
105
+ ```bash
106
+ npm install -g workday-studio-mcp-server
107
+ ```
108
+
109
+ ### Install via npx (zero-install)
110
+
111
+ No installation is required. Simply reference `npx workday-studio-mcp-server` in your MCP configuration as shown in the Quick Start section above.
112
+
113
+ ---
114
+
115
+ ## Usage Examples
116
+
117
+ ### Claude Desktop
118
+
119
+ Edit the Claude Desktop config file:
120
+
121
+ - **Windows:** `%APPDATA%\Claude\claude_desktop_config.json`
122
+ - **macOS:** `~/Library/Application Support/Claude/claude_desktop_config.json`
123
+
124
+ ```json
125
+ {
126
+ "mcpServers": {
127
+ "workday-studio-mcp-server": {
128
+ "command": "npx",
129
+ "args": ["workday-studio-mcp-server"],
130
+ "env": {
131
+ "WORKDAY_STUDIO_WORKSPACE": "C:\\Users\\YourName\\eclipse-workspace"
132
+ }
133
+ }
134
+ }
135
+ }
136
+ ```
137
+
138
+ Save the file and **restart Claude Desktop**.
139
+
140
+ ---
141
+
142
+ ### Cursor
143
+
144
+ Open **Cursor Settings → MCP** and add:
145
+
146
+ ```json
147
+ {
148
+ "mcpServers": {
149
+ "workday-studio-mcp-server": {
150
+ "command": "npx",
151
+ "args": ["workday-studio-mcp-server"],
152
+ "env": {
153
+ "WORKDAY_STUDIO_WORKSPACE": "C:\\Users\\YourName\\eclipse-workspace"
154
+ }
155
+ }
156
+ }
157
+ }
158
+ ```
159
+
160
+ ---
161
+
162
+ ### Claude Code (CLI)
163
+
164
+ ```bash
165
+ claude mcp add workday-studio-mcp-server \
166
+ --command npx \
167
+ --args workday-studio-mcp-server \
168
+ --env WORKDAY_STUDIO_WORKSPACE=/Users/yourname/eclipse-workspace
169
+ ```
170
+
171
+ Confirm it is registered:
172
+
173
+ ```bash
174
+ claude mcp list
175
+ ```
176
+
177
+ ---
178
+
179
+ ## Environment Variables
180
+
181
+ | Variable | Description | Required |
182
+ |---|---|---|
183
+ | `WORKDAY_STUDIO_WORKSPACE` | Absolute path to your Eclipse / Workday Studio workspace folder | ✅ Yes |
184
+
185
+ ---
186
+
187
+ ## Tool Reference
188
+
189
+ ### Navigation
190
+
191
+ | Tool | Description |
192
+ |---|---|
193
+ | `list_studio_projects` | List all projects in the configured workspace |
194
+ | `list_project_files` | List files in a specific project, with optional extension filter |
195
+ | `read_integration_file` | Read the content of any file in the workspace |
196
+ | `search_studio_files` | Full-text search across all workspace files |
197
+ | `get_workspace_structure` | Return a tree view of the entire workspace |
198
+
199
+ ### File Management
200
+
201
+ | Tool | Description |
202
+ |---|---|
203
+ | `write_integration_file` | Write (create or overwrite) a file in the workspace |
204
+ | `copy_file_from_project` | Copy a file between projects |
205
+ | `rename_file` | Rename a file within its project |
206
+ | `delete_file` | Delete a file (with optional backup) |
207
+ | `validate_xml_file` | Validate XML well-formedness of a file |
208
+
209
+ ### Project Setup
210
+
211
+ | Tool | Description |
212
+ |---|---|
213
+ | `create_studio_project` | Scaffold a new Workday Studio integration project |
214
+ | `create_xsl_transform` | Create a new XSL transform file with boilerplate |
215
+
216
+ ### Assembly Operations
217
+
218
+ | Tool | Description |
219
+ |---|---|
220
+ | `list_assembly_steps` | List all steps in an assembly.xml |
221
+ | `list_integration_params` | List launch parameters defined in an assembly |
222
+ | `add_assembly_step` | Append a new step to an assembly flow |
223
+ | `update_sub_flow` | Surgically replace a sub-flow stub with real implementation |
224
+ | `validate_assembly` | Run Studio-specific validation rules on an assembly |
225
+
226
+ ### Reference & Planning
227
+
228
+ | Tool | Description |
229
+ |---|---|
230
+ | `plan_integration` | Guided design elicitation before writing any XML |
231
+ | `get_step_type_reference` | Look up confirmed XML examples for any step type |
232
+ | `lookup_soap_operations` | Look up SOAP operations for Workday web services |
233
+
234
+ ### Diagnostics
235
+
236
+ | Tool | Description |
237
+ |---|---|
238
+ | `parse_server_log` | Parse a `server-*.log` from `~/Downloads` into structured events |
239
+
240
+ ### Knowledge Capture
241
+
242
+ | Tool | Description |
243
+ |---|---|
244
+ | `log_learning` | Persist a Studio pattern or lesson to the shared knowledge base |
245
+
246
+ ---
247
+
248
+ ## Security
249
+
250
+ - The server **only reads/writes files inside your configured workspace path** path-traversal attempts are blocked.
251
+ - **No credentials, API keys, or Workday tenant details** are stored or transmitted.
252
+ - The server communicates over **stdio only** no network ports are opened.
253
+
254
+ ---
255
+
256
+ ## License
257
+
258
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package/dist/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env node
1
2
  /**
2
3
  * Workday Studio MCP Server — main entry point.
3
4
  *
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AACA;;;;;GAKG"}
package/dist/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env node
1
2
  /**
2
3
  * Workday Studio MCP Server — main entry point.
3
4
  *
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAE,SAAS,EAAE,MAAM,yCAAyC,CAAC;AACpE,OAAO,EAAE,oBAAoB,EAAE,MAAM,2CAA2C,CAAC;AAEjF,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,MAAM,EAAE,MAAM,mBAAmB,CAAC;AAE3C,iFAAiF;AACjF,OAAO,EAAE,QAAQ,IAAI,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAC5E,OAAO,EAAE,QAAQ,IAAI,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AACtE,OAAO,EAAE,QAAQ,IAAI,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AACpE,OAAO,EAAE,QAAQ,IAAI,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AACtE,OAAO,EAAE,QAAQ,IAAI,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAC1E,OAAO,EAAE,QAAQ,IAAI,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAC1E,OAAO,EAAE,QAAQ,IAAI,qBAAqB,EAAE,MAAM,2BAA2B,CAAC;AAC9E,OAAO,EAAE,QAAQ,IAAI,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AACxE,OAAO,EAAE,QAAQ,IAAI,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AACpE,OAAO,EAAE,QAAQ,IAAI,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AACxE,OAAO,EAAE,QAAQ,IAAI,yBAAyB,EAAE,MAAM,gCAAgC,CAAC;AACvF,OAAO,EAAE,QAAQ,IAAI,6BAA6B,EAAE,MAAM,oCAAoC,CAAC;AAE/F,iFAAiF;AACjF,OAAO,CAAC,EAAE,CAAC,mBAAmB,EAAE,CAAC,GAAG,EAAE,EAAE;IACtC,MAAM,CAAC,KAAK,CAAC,oCAAoC,EAAE;QACjD,OAAO,EAAE,QAAQ;QACjB,KAAK,EAAE,GAAG,YAAY,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC;QACvD,KAAK,EAAE,GAAG,YAAY,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS;KACpD,CAAC,CAAC;IACH,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAClB,CAAC,CAAC,CAAC;AAEH,OAAO,CAAC,EAAE,CAAC,oBAAoB,EAAE,CAAC,MAAM,EAAE,EAAE;IAC1C,MAAM,CAAC,KAAK,CAAC,6CAA6C,EAAE;QAC1D,OAAO,EAAE,QAAQ;QACjB,MAAM,EAAE,MAAM,YAAY,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC;KAClE,CAAC,CAAC;IACH,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAClB,CAAC,CAAC,CAAC;AAEH,iFAAiF;AACjF,KAAK,UAAU,IAAI;IACjB,MAAM,GAAG,GAAG,SAAS,EAAE,CAAC;IAExB,MAAM,CAAC,IAAI,CAAC,oCAAoC,EAAE;QAChD,OAAO,EAAE,QAAQ;QACjB,IAAI,EAAE,GAAG,CAAC,UAAU;QACpB,OAAO,EAAE,GAAG,CAAC,aAAa;QAC1B,SAAS,EAAE,GAAG,CAAC,aAAa;KAC7B,CAAC,CAAC;IAEH,MAAM,MAAM,GAAG,IAAI,SAAS,CAAC;QAC3B,IAAI,EAAE,GAAG,CAAC,UAAU;QACpB,OAAO,EAAE,GAAG,CAAC,aAAa;KAC3B,CAAC,CAAC;IAEH,qBAAqB;IACrB,oBAAoB,CAAC,MAAM,CAAC,CAAC;IAC7B,iBAAiB,CAAC,MAAM,CAAC,CAAC;IAC1B,gBAAgB,CAAC,MAAM,CAAC,CAAC;IACzB,iBAAiB,CAAC,MAAM,CAAC,CAAC;IAC1B,mBAAmB,CAAC,MAAM,CAAC,CAAC;IAC5B,mBAAmB,CAAC,MAAM,CAAC,CAAC;IAC5B,qBAAqB,CAAC,MAAM,CAAC,CAAC;IAC9B,kBAAkB,CAAC,MAAM,CAAC,CAAC;IAC3B,gBAAgB,CAAC,MAAM,CAAC,CAAC;IACzB,kBAAkB,CAAC,MAAM,CAAC,CAAC;IAC3B,yBAAyB,CAAC,MAAM,CAAC,CAAC;IAClC,6BAA6B,CAAC,MAAM,CAAC,CAAC;IAEtC,MAAM,CAAC,IAAI,CAAC,mDAAmD,EAAE;QAC/D,OAAO,EAAE,QAAQ;QACjB,SAAS,EAAE,EAAE;KACd,CAAC,CAAC;IAEH,MAAM,SAAS,GAAG,IAAI,oBAAoB,EAAE,CAAC;IAC7C,MAAM,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC;IAEhC,MAAM,CAAC,IAAI,CAAC,kDAAkD,EAAE;QAC9D,OAAO,EAAE,QAAQ;KAClB,CAAC,CAAC;AACL,CAAC;AAED,IAAI,EAAE,CAAC,KAAK,CAAC,CAAC,GAAG,EAAE,EAAE;IACnB,MAAM,CAAC,KAAK,CAAC,qBAAqB,EAAE;QAClC,OAAO,EAAE,QAAQ;QACjB,KAAK,EAAE,GAAG,YAAY,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC;QACvD,KAAK,EAAE,GAAG,YAAY,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS;KACpD,CAAC,CAAC;IACH,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAClB,CAAC,CAAC,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,66 +1,72 @@
1
- {
2
- "name": "workday-studio-mcp-server",
3
- "version": "2.0.0",
4
- "description": "Enterprise-grade MCP server connecting AI assistants to local Workday Studio / Eclipse workspaces. Runs purely over stdio for local desktop client integration.",
5
- "type": "module",
6
- "license": "MIT",
7
- "author": "Workday Studio MCP Server Contributors",
8
- "homepage": "https://github.com/yugn27/workday-studio-mcp-server#readme",
9
- "repository": {
10
- "type": "git",
11
- "url": "git+https://github.com/yugn27/workday-studio-mcp-server.git"
12
- },
13
- "bugs": {
14
- "url": "https://github.com/yugn27/workday-studio-mcp-server/issues"
15
- },
16
- "keywords": [
17
- "workday",
18
- "studio",
19
- "mcp",
20
- "model-context-protocol",
21
- "integration",
22
- "assembly",
23
- "xslt",
24
- "eclipse",
25
- "ai",
26
- "llm",
27
- "claude",
28
- "flowise",
29
- "xml",
30
- "automation",
31
- "developer-tools",
32
- "typescript"
33
- ],
34
- "engines": {
35
- "node": ">=18.0.0"
36
- },
37
- "main": "dist/index.js",
38
- "files": [
39
- "dist/",
40
- "docs/",
41
- ".env.example",
42
- "README.md",
43
- "LICENSE"
44
- ],
45
- "scripts": {
46
- "build": "tsc --project tsconfig.json",
47
- "start": "node dist/index.js",
48
- "dev": "tsx watch src/index.ts",
49
- "dev:once": "tsx src/index.ts",
50
- "typecheck": "tsc --noEmit",
51
- "lint": "tsc --noEmit && echo 'TypeScript check OK'",
52
- "prepublishOnly": "npm run build"
53
- },
54
- "dependencies": {
55
- "@modelcontextprotocol/sdk": "^1.10.2",
56
- "dotenv": "^16.0.0",
57
- "fast-xml-parser": "^4.3.0",
58
- "winston": "^3.11.0",
59
- "zod": "^3.22.0"
60
- },
61
- "devDependencies": {
62
- "@types/node": "^20.0.0",
63
- "tsx": "^4.7.0",
64
- "typescript": "^5.3.0"
65
- }
66
- }
1
+ {
2
+ "name": "workday-studio-mcp-server",
3
+ "version": "2.0.1",
4
+ "description": "Enterprise-grade MCP server connecting AI assistants to local Workday Studio / Eclipse workspaces. Runs purely over stdio for local desktop client integration.",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "author": "Workday Studio MCP Server Contributors",
8
+ "homepage": "https://github.com/yugn27/workday-studio-mcp-server#readme",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/yugn27/workday-studio-mcp-server.git"
12
+ },
13
+ "bugs": {
14
+ "url": "https://github.com/yugn27/workday-studio-mcp-server/issues"
15
+ },
16
+ "keywords": [
17
+ "workday",
18
+ "studio",
19
+ "mcp",
20
+ "model-context-protocol",
21
+ "integration",
22
+ "assembly",
23
+ "xslt",
24
+ "eclipse",
25
+ "ai",
26
+ "llm",
27
+ "claude",
28
+ "flowise",
29
+ "xml",
30
+ "automation",
31
+ "developer-tools",
32
+ "typescript"
33
+ ],
34
+ "engines": {
35
+ "node": ">=18.0.0"
36
+ },
37
+ "main": "dist/index.js",
38
+ "bin": {
39
+ "workday-studio-mcp-server": "dist/index.js"
40
+ },
41
+ "files": [
42
+ "dist/",
43
+ "docs/",
44
+ ".env.example",
45
+ "README.md",
46
+ "LICENSE"
47
+ ],
48
+ "scripts": {
49
+ "build": "tsc --project tsconfig.json",
50
+ "start": "node dist/index.js",
51
+ "dev": "tsx watch src/index.ts",
52
+ "dev:once": "tsx src/index.ts",
53
+ "typecheck": "tsc --noEmit",
54
+ "lint": "tsc --noEmit && echo 'TypeScript check OK'",
55
+ "prepublishOnly": "npm run build"
56
+ },
57
+ "dependencies": {
58
+ "@modelcontextprotocol/sdk": "^1.10.2",
59
+ "build": "^0.1.4",
60
+ "dotenv": "^16.0.0",
61
+ "fast-xml-parser": "^4.3.0",
62
+ "npm": "^11.16.0",
63
+ "run": "^1.5.0",
64
+ "winston": "^3.11.0",
65
+ "zod": "^3.22.0"
66
+ },
67
+ "devDependencies": {
68
+ "@types/node": "^20.0.0",
69
+ "tsx": "^4.7.0",
70
+ "typescript": "^5.3.0"
71
+ }
72
+ }