mcp-leave-management
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| add_employeeA | Add a new employee to the employees data with default balance 10 and history value [] |
| get_leave_balanceC | Get available leave balance for an employee |
| apply_leaveC | Apply leave for an employee |
| get_leave_historyB | Get the leave application history for an employee |
| cancel_leaveA | Cancel a previously applied leave and restore the balance |
| list_employeesA | List all employee names currently in the system |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 6 tools
Each tool has a distinct, non-overlapping purpose: employee management, leave application/cancellation, balance/history retrieval, and listing. No ambiguity between tools.
All tool names consistently follow the verb_noun pattern (add_employee, apply_leave, cancel_leave, get_leave_balance, get_leave_history, list_employees), making the convention predictable.
With 6 tools covering employee management (add, list) and leave lifecycle (apply, cancel, balance, history), the count is well-scoped for the server's purpose.
Core leave workflows are fully covered (apply, cancel, balance, history), and employee management is partially covered (add, list). Missing update/delete employee tools, but the domain is still usable without them.