Workday Studio MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Workday Studio MCPList my Studio projects"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Workday Studio MCP
A local MCP (Model Context Protocol) server that gives Claude direct access to your Workday Studio workspace. Read, write, plan, and validate integration assemblies without copy-pasting XML back and forth.
Everything runs locally on your machine — no network calls, no tenant credentials, no shared state. The server only sees the Studio Workspace folder you point it at.
What you get
26 tools across these categories:
Category | What it does |
Navigation |
|
File management |
|
Project setup |
|
Assembly editing |
|
Planning |
|
Reference |
|
Diagnostics |
|
Knowledge capture |
|
A growing knowledge base lives at docs/studio-integration-patterns.md — hard-won lessons captured from real Studio debugging sessions.
For a single-page digest of the tools, the plan_integration design brief, validator rule codes, the SOAP catalog, and the highest-value patterns, see docs/quick-reference.md.
Related MCP server: workday-studio-mcp
Quick install
One line:
curl -fsSL https://raw.githubusercontent.com/krishnagutta/Workday-studio-mcp/main/bin/quickstart.sh | bashThis clones the repo to ~/Workday-studio-mcp, installs dependencies, and prints the exact claude mcp add command for your machine.
Or do it manually — see Manual setup below.
Prerequisites
Node.js 18+ — check with
node --versionWorkday Studio installed with at least one project in your workspace
Claude Desktop or Claude Code (CLI) — both work
Manual setup
1. Clone and install
git clone https://github.com/krishnagutta/Workday-studio-mcp.git
cd Workday-studio-mcp
npm install2. Configure your workspace path
cp config.json.example config.jsonOpen config.json and set workspace_path to the folder containing your Studio projects (the same one Eclipse opens):
{
"workspace_path": "/Users/yourname/Documents/Studio Workspace",
"max_file_size_kb": 500,
"backup_on_write": true,
"excluded_dirs": [".git", ".settings", "bin", "build", "node_modules", ".metadata", ".plugins"],
"excluded_extensions": [".class", ".jar", ".zip", ".bak"]
}Or skip config.json entirely and use an env var:
export STUDIO_WORKSPACE_PATH="/Users/yourname/Documents/Studio Workspace"3. Verify it starts
node src/index.mjsYou should see:
[studio-mcp] Server started. Workspace: /Users/yourname/Documents/Studio WorkspacePress Ctrl+C to stop — Claude will spawn it on demand.
Connect to Claude
Option A — Claude Code (CLI)
claude mcp add studio-mcp node /absolute/path/to/Workday-studio-mcp/src/index.mjsConfirm:
claude mcp listOption B — Claude Desktop
Edit the config file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
Add inside mcpServers:
{
"mcpServers": {
"studio-mcp": {
"command": "node",
"args": ["/absolute/path/to/Workday-studio-mcp/src/index.mjs"]
}
}
}Save and restart Claude Desktop.
Tip: Use
which nodeto get your full node path if Claude can't find it.
Use it
List projects
"List my Studio projects"
Read a file
"Read the assembly.xml from INT145"
Plan a new integration
"I need to build a new integration"
Claude asks design questions (data source, destination, trigger, record volume, auth, error handling) before generating anything. Then it writes a skeleton assembly.xml + assembly-diagram.xml you can open in Studio immediately.
It also writes an aidlc-docs/ folder at the project root, so the design rationale outlives the conversation:
<your project>/aidlc-docs/
├── plan.md # design brief, per-sub-flow prop contracts, open gaps, tenant handoff checklist
└── state.json # lifecycle state — sub-flow status, decisions logCommit these with your integration: they are the record of why it is shaped this way. Regenerating the scaffold refreshes both files but preserves the created date and the decisions log. Attribute names are recorded, never credential values.
Pick up where you left off
"What's the status of INT999_Employee_Sync?"
get_workflow reads aidlc-docs/state.json and reports the phase, which sub-flows are built vs still TODO stubs, the last validation result, and the single next recommended action — without reading the XML. For a project that predates aidlc-docs/, call it with retrofit=true to derive state from the existing assembly.
Fill in a sub-flow
"Fill in the GetWorkers sub-flow — here's the RAAS sample: [paste XML]"
update_sub_flow surgically replaces the TODO stub with real steps and validates the result.
Search across integrations
"Find all uses of integrationMapLookup"
Validate
"Validate the assembly for INT145"
Returns errors (broken routes, illegal comments, missing attributes) and warnings (missing XSL files, unresolved sub-flow endpoints).
Look up a step type
"Show me the cc:http-out reference"
Returns confirmed XML examples, schema rules, and gotchas.
Rename a step safely
"Rename AsyncMediation3 to SetTransactionProps"
rename_steps updates the step ID in assembly.xml and every href in assembly-diagram.xml atomically — renaming in only one file crashes Studio's diagram view.
Find a SOAP operation
"Which WWS service has Put_Applicant?"
lookup_soap_operations searches the Workday Web Services catalog and returns the service, common operations, and WSDL link.
Pull curated guidance before hand-editing a diagram
"Show me the diagram rules before I edit assembly-diagram.xml"
get_patterns serves the curated knowledge base — the cross-integration rules that span step types (EMF @mixed index math, swimlane layout, the three-entry add/remove rule, MVEL/XSLT/RAAS idioms). Call it with no args for an index, topic="Diagram Rules" for a section, or search="swimlane" to find by keyword. These are the same lessons in docs/studio-integration-patterns.md, now reachable from any MCP session.
Capture a discovery
When Claude hits an undocumented Studio behavior during a session, it logs the pattern to learnings.md via log_learning — entries are reviewed and promoted into the curated knowledge base.
Parse a server log
After downloading a server-{wid}.log from Workday (View Integration Events → expand documents → click the server-*.log):
"Parse my latest server log"
Returns structured timeline, unique errors, and XSLT messages. The parser auto-finds the most recent server-*.log in ~/Downloads.
Project structure
Workday-studio-mcp/
├── src/
│ ├── index.mjs # Entry — registers tools, starts server
│ ├── config.mjs # Loads workspace path
│ ├── fs.mjs # FS helpers + path traversal protection
│ ├── xml.mjs # XML validation wrapper
│ ├── assembly-validator.mjs # Studio-specific assembly rules
│ ├── aidlc-docs.mjs # Persists the integration plan + lifecycle state
│ └── tools/
│ ├── list-projects.mjs
│ ├── list-files.mjs
│ ├── read-file.mjs
│ ├── write-file.mjs
│ ├── search-files.mjs
│ ├── workspace-tree.mjs
│ ├── validate-xml.mjs
│ ├── create-project.mjs
│ ├── list-assembly-steps.mjs
│ ├── list-integration-params.mjs
│ ├── add-assembly-step.mjs
│ ├── create-xsl-transform.mjs
│ ├── copy-file-from-project.mjs
│ ├── rename-file.mjs
│ ├── delete-file.mjs
│ ├── get-step-type-reference.mjs # Step type docs
│ ├── lookup-soap-operations.mjs # WWS service/operation catalog
│ ├── get-patterns.mjs # Serves the curated knowledge base
│ ├── plan-integration.mjs # Design elicitation
│ ├── get-workflow.mjs # Lifecycle status + next action
│ ├── update-sub-flow.mjs # Surgical sub-flow replacement
│ ├── rename-steps.mjs # Atomic step rename (assembly + diagram)
│ ├── delete-assembly-step.mjs # Atomic step delete (assembly + diagram)
│ ├── validate-assembly.mjs # Studio rules engine
│ ├── log-learning.mjs # Knowledge-capture intake
│ └── parse-server-log.mjs # Local log parser
├── docs/
│ └── studio-integration-patterns.md # Shared knowledge base
├── learnings.md # Append-only learnings intake queue
├── bin/
│ ├── install.sh
│ └── quickstart.sh
├── test/ # `npm test` — node:test, no dependencies
│ ├── fixtures/
│ └── *.test.mjs
├── config.json.example
├── CLAUDE.md # Instructions for Claude when working in this repo
├── package.json
└── .gitignoreSecurity
The server only sees files inside your configured
workspace_path— path traversal attempts are blocked.No credentials, API keys, or Workday tenant details are stored or transmitted.
config.json(which contains your local workspace path) is gitignored.The server runs over stdio — no network ports are opened.
Contributing patterns back
When you discover a new Studio quirk, schema rule, or assembly pattern, add it to docs/studio-integration-patterns.md and open a PR. See CLAUDE.md for guidance on what kinds of learnings belong there. The goal is a collective memory across the team — every debugging session that finds a new gotcha makes the next one cheaper.
Troubleshooting
workspace_path not configured
Run cp config.json.example config.json and set the path.
Workspace path does not exist
Check the path in config.json matches your Studio workspace folder.
Tools don't appear in Claude Ensure the path in your Claude config is absolute, not relative. Restart Claude Desktop after editing.
node: command not found in Claude
Use the full node path:
/usr/local/bin/node /full/path/to/src/index.mjsFind it with which node.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseAqualityDmaintenanceAn MCP server that gives Claude IDE capabilities inside VS Code and Cursor, enabling file operations, shell commands, and workspace management via natural language.Last updated12
- Flicense-qualityCmaintenanceA local MCP server that gives Claude direct access to Workday Studio workspace. Enables reading, writing, planning, and validating integration assemblies without network calls or tenant credentials.Last updated
- Alicense-qualityAmaintenanceAn MCP server that enables Claude Desktop to search and read local documents via full-text and fuzzy search, providing direct access to indexed files without chunking.Last updatedMIT
- Alicense-qualityCmaintenanceA remote MCP server that provides full filesystem and shell access to a cloud-hosted environment via HTTPS, enabling Claude Desktop to read, write, edit, search files, and execute commands on a remote Azure machine.Last updatedMIT
Related MCP Connectors
Hosted Amazon Seller and Vendor MCP server for Claude, ChatGPT, Cursor, Codex, Gemini, Copilot.
Hosted Amazon Seller Central and Amazon Ads MCP server for Claude, ChatGPT, Cursor, and agents.
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/arjunsena-eze/Workday-studio-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server