Workday Automation
Scannednpx machina-cli add skill ComposioHQ/awesome-claude-skills/workday-automation --openclawWorkday Automation
Automate your Workday HR operations directly from Claude Code. Look up workers, create time off requests, check absence balances, and validate time off eligibility -- all without leaving your terminal.
Toolkit docs: composio.dev/toolkits/workday
Setup
- Add the Rube MCP server to your Claude Code config with URL:
https://rube.app/mcp - When prompted, authenticate your Workday account through the connection link provided
- Start automating your HR workflows with natural language
Core Workflows
1. Search and List Workers
Retrieve worker information with search and pagination.
Tool: WORKDAY_LIST_WORKERS
Search for workers named "Sarah" and include terminated employees
Key parameters:
search-- search by name or worker ID (case-insensitive, space-delimited for OR search)includeTerminatedWorkers-- include terminated workers in resultslimit(default 20, max 100) /offset-- pagination controls
2. Create Time Off Requests
Submit time off requests for workers with full business process support.
Tool: WORKDAY_CREATE_TIME_OFF_REQUEST
Create a vacation request for worker abc123 for March 15-17, 2026 (8 hours each day)
Key parameters:
ID(required) -- Workday worker IDbusinessProcessParameters(required) -- must includeactionwithidfield (use"d9e4223e446c11de98360015c5e6daf6"for submit action)days(required) -- array of time off entries, each with:date(required) -- date inyyyy-mm-ddformattimeOffType(required) -- object withidof the eligible absence typedailyQuantity-- hours or days quantitycomment,start,end,position,reason-- optional fields
businessProcessParameters.comment-- optional business process comment
3. Check Time Off Eligibility
Validate which dates a worker can take off before submitting a request.
Tool: WORKDAY_GET_WORKER_VALID_TIME_OFF_DATES
Check if worker abc123 is eligible to take time off on March 15, 2026
Key parameters:
ID(required) -- Workday worker IDdate-- specific date to validate (yyyy-mm-dd)position-- filter by specific position IDtimeOff-- filter by specific time off plan/type IDlimit(max 100) /offset-- pagination
4. View Absence Balances
Check remaining time off balances for workers across all plans.
Tool: WORKDAY_LIST_ABSENCE_BALANCES
Show me absence balances for all workers in the organization
- Retrieves balances for time off plans and leave of absence types
- Can be filtered by worker ID, category, and effective date
5. Get Current User Profile
Retrieve the authenticated worker's profile information.
Tool: WORKDAY_GET_CURRENT_USER
Show me my Workday profile information
- No parameters required
- Returns the authenticated worker's profile
- Use this first to get the worker ID for subsequent operations
6. View Time Off History
Retrieve time off details and history for a specific worker.
Tool: WORKDAY_GET_WORKER_TIME_OFF_DETAILS
Show me the time off history for worker abc123
- Retrieves a collection of time off details for the specified worker
- Useful for auditing time off usage and remaining balances
Known Pitfalls
- Worker ID resolution: Always call
WORKDAY_GET_CURRENT_USERorWORKDAY_LIST_WORKERSfirst to resolve Workday worker IDs. Worker IDs are Workday-specific UUIDs, not employee numbers. - Time off type IDs must be valid: The
timeOffType.idinWORKDAY_CREATE_TIME_OFF_REQUESTmust reference a valid eligible absence type for that worker. Use the "Get Worker Eligible Absence Types" flow to discover valid type IDs. - Submit action ID: The
businessProcessParameters.action.idshould be"d9e4223e446c11de98360015c5e6daf6"for the submit action. Using an incorrect ID will cause the business process to fail. - Date format: All date fields use
yyyy-mm-ddformat. ISO 8601 with timestamps is not accepted for date-only fields. - Pagination limits: The maximum
limitis 100 across all Workday endpoints. Default is 20. Always paginate for complete datasets. - Business process approval: Creating a time off request initiates the business process but does not guarantee approval. The request enters the normal approval workflow.
Quick Reference
| Tool Slug | Description |
|---|---|
WORKDAY_LIST_WORKERS | Search and list workers with staffing info |
WORKDAY_GET_CURRENT_USER | Get the authenticated worker's profile |
WORKDAY_CREATE_TIME_OFF_REQUEST | Submit a time off request (requires ID, businessProcessParameters, days) |
WORKDAY_GET_WORKER_VALID_TIME_OFF_DATES | Check time off date eligibility (requires ID) |
WORKDAY_LIST_ABSENCE_BALANCES | Retrieve absence balances across time off plans |
WORKDAY_GET_WORKER_TIME_OFF_DETAILS | Get time off history for a worker |
Powered by Composio
Source
git clone https://github.com/ComposioHQ/awesome-claude-skills/blob/master/composio-skills/workday-automation/SKILL.mdView on GitHub Overview
Automate HR operations in Workday from Claude Code, including worker lookup, time off requests, and absence balances. This skill uses the Rube MCP bridge to run Workday tasks from natural language commands in your terminal, reducing manual clicks.
How This Skill Works
Connect to Workday through the Rube MCP server, then call specific tools like WORKDAY_LIST_WORKERS, WORKDAY_CREATE_TIME_OFF_REQUEST, WORKDAY_GET_WORKER_VALID_TIME_OFF_DATES, WORKDAY_LIST_ABSENCE_BALANCES, WORKDAY_GET_CURRENT_USER, and WORKDAY_GET_WORKER_TIME_OFF_DETAILS to manage workers, validate time-off dates, and view balances. Start by resolving a worker ID with WORKDAY_GET_CURRENT_USER or WORKDAY_LIST_WORKERS, then perform actions using required parameters such as businessProcessParameters and days.
When to Use It
- When you need to search for or list workers by name or ID
- When a time-off request must be created for a worker
- When you want to verify time-off eligibility before submitting
- When you need to view absence balances across plans
- When you want to fetch your own Workday profile information
Quick Start
- Step 1: Add the Rube MCP server to Claude Code with URL https://rube.app/mcp and authenticate your Workday account
- Step 2: Run WORKDAY_GET_CURRENT_USER to fetch your worker ID
- Step 3: Use tools like WORKDAY_CREATE_TIME_OFF_REQUEST or WORKDAY_LIST_ABSENCE_BALANCES with the required parameters to automate HR tasks
Best Practices
- Resolve the worker ID first with WORKDAY_GET_CURRENT_USER or WORKDAY_LIST_WORKERS to avoid ID mismatches
- Ensure timeOffType.id references a valid absence type for the worker
- Use the required businessProcessParameters.action.id with value d9e4223e446c11de98360015c5e6daf6 for submits
- Format dates as yyyy-mm-dd and use limit/offset for pagination when listing workers
- Test with non-production dates and verify authorization before automating production tasks
Example Use Cases
- Search for all workers named Sarah, including terminated ones
- Submit a vacation request for worker abc123 for 2026-03-15 to 2026-03-17 with 8 hours per day
- Check if worker abc123 is eligible to take time off on 2026-03-15
- Show absence balances for all workers in the organization
- Show my Workday profile information