# Workday MCP Server

Enable seamless integration of Workday data and services with language models through a standardized protocol. Facilitate dynamic access to Workday resources, tools, and prompts to enhance automation…

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add KaranThink41/workday_mcp_server

# Browse available tools
npx -y @smithery/cli@latest tool list KaranThink41/workday_mcp_server

# Get full schema for a tool
npx -y @smithery/cli@latest tool get KaranThink41/workday_mcp_server workday_get_employees

# Call a tool
npx -y @smithery/cli@latest tool call KaranThink41/workday_mcp_server workday_get_employees '{}'
```

## Tools (3)

- `workday_get_employees` — Get a list of employees from Workday.
- `workday_get_eligible_leave_balance` — Get the eligible absence types and leave balance for an employee from Workday.
- `workday_submit_leave_request` — Submit a time off request for an employee in Workday.

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get KaranThink41/workday_mcp_server <tool-name>
```

---

Source: https://github.com/KaranThink41/workday_mcp
