employee-leave-management-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., "@employee-leave-management-mcpAdd employee E001, Alice Johnson"
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.
Leave Management MCP Server
This project provides a simple MCP server for an employee leave-management system built with UV and Python.
Features
Add employees
List all employees
Add leave entries for an employee
List leave entries for an employee
Delete leave entries
Startup and tool logging for troubleshooting
Related MCP server: leave-manager-mcp-server
Project structure
src/leave_management_mcp/server.py– MCP tool definitions and in-memory leave data storesrc/leave_management_mcp/__init__.py– package exports and entry pointtests/test_leave_management.py– regression tests for the core behaviorleave_management_mcp.log– runtime log file generated by the server
Run locally
From the project root:
cd C:\Users\VIJAY\Codebase\mcp\leave-management
uv run leave-management-mcpThe server uses stdio transport, which is the recommended transport for Claude Desktop.
Claude Desktop config
Create or edit this file:
%APPDATA%\Claude\claude_desktop_config.jsonUse this exact config:
{
"mcpServers": {
"leave-management": {
"command": "C:\\Users\\VIJAY\\AppData\\Local\\Programs\\Python\\Python314\\Scripts\\uv.exe",
"args": [
"--directory",
"C:\\Users\\VIJAY\\Codebase\\mcp\\leave-management",
"run",
"leave-management-mcp"
]
}
}
}Important:
The earlier path
C:\Users\VIJAY\.local\bin\uv.exewas invalid on this machine.The actual installed UV path is under the Python Scripts folder.
Restart Claude Desktop after saving the file.
Example prompts in Claude
"Add employee E001, Alice Johnson"
"List all employees"
"Add leave for E001 from 2026-08-20 to 2026-08-22 as annual"
"Show leave records for E001"
"Delete leave for E001 from 2026-08-20 to 2026-08-22"
Logging
The server writes logs to:
stderr for immediate output
leave_management_mcp.login the project root for persisted troubleshooting
This helps confirm whether the MCP server is starting correctly when Claude Desktop launches it.
Validation
Run the test suite:
cd C:\Users\VIJAY\Codebase\mcp\leave-management
uv run pytest -qVerified result:
2 passed in 2.85sThe project passes the current regression tests and the server launch path has been verified.
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
- Flicense-qualityDmaintenanceEnables managing employee leave requests, balances, and approvals through natural language with Claude Desktop, using SQLite for persistence and fuzzy name matching.
- FlicenseBqualityCmaintenanceEnables LLMs to manage employee leave by checking balances, applying for leave, and viewing history.3
- FlicenseAqualityCmaintenanceExposes employee leave-management operations (add employees, check balance, apply/cancel leave, view history) as MCP tools for AI clients like Claude Desktop to call directly.6
- FlicenseBqualityCmaintenanceEnables managing employee leave requests including checking balance, applying for leave, and viewing history.3
Related MCP Connectors
Manage projects, tasks, time tracking, and team collaboration through natural language.
Track time on usetimebook.com - start/stop timers, log entries, list projects/clients.
Log, query, and edit expenses, budgets, and accounts in Ledgy from any MCP-compatible AI assistant.
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/svijayingle/employee-leave-management-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server