HRizzle-HR-Assist
Sends email notifications for onboarding, meeting invites, and status updates via Gmail SMTP integration.
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., "@HRizzle-HR-Assistonboard Jane Smith as a Product Manager"
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.
HRizzle-HR-Assist is an MCP-based HR automation system that integrates with Claude Desktop to provide conversational HR management. It handles employee onboarding, meeting scheduling, leave applications, equipment requests, and manager assignments through a dummy HRMS API mimicking Keka's interface. The system uses Pydantic for data validation, smtplib for email automation, and FastMCP for protocol-compliant tool exposure.
Features
Conversational Employee Onboarding: Multi-step onboarding workflow using MCP prompts that adds employees, sends welcome emails, assigns managers, and creates equipment tickets.
Intelligent Leave Management: Apply for leave, check leave balance (20-day default), and retrieve leave history with automatic date validation.
Meeting Coordination: Schedule meetings with conflict detection, view upcoming meetings, and cancel existing meetings with topic matching.
Equipment Request Ticketing: Create IT helpdesk tickets for equipment (Laptops, Monitors, etc.) with status tracking (Open/In Progress/Closed).
Fuzzy Name Search: Resolve employee names to IDs using difflib matching for natural language interactions.
Email Automation: SMTP-based email notifications for onboarding, meeting invites, and status updates via Gmail integration.
Manager Hierarchy: Assign managers and fetch direct reports with organizational structure validation.
Seeded Dummy Data: Pre-populated with 8 employees across Engineering and Product teams for immediate testing.
Related MCP server: mcp-practice
MCP Tools & Capabilities
Available Tools
Tool | Purpose | Input Parameters | Return |
| Create new employee record | emp_name, manager_id/name, email | Success confirmation with emp_id |
| Fetch employee information | emp_name (fuzzy match) | Employee dict with manager and email |
| Book meetings with conflict check | emp_id, meeting_datetime (ISO), topic | Confirmation or conflict error |
| List employee meetings | emp_id | Chronologically sorted meeting list |
| Remove scheduled meetings | emp_id, meeting_datetime, optional topic | Cancellation confirmation |
| Submit leave requests | emp_id, leave_dates (YYYY-MM-DD list) | Days booked + remaining balance |
| Check remaining leaves | emp_id | Balance string (e.g., "15 days remaining") |
| View past leave records | emp_id | Formatted date list |
| Raise equipment/asset requests | emp_id, item, reason | Ticket ID (T0001 format) |
| Change ticket state | ticket_id, status (Open/In Progress/Closed/Rejected) | Status update confirmation |
| Filter and view tickets | emp_id, optional status | List of matching tickets |
| Dispatch notifications | subject, body, to_emails | Delivery confirmation |
Specialized Prompts
onboard_new_employee: Orchestrates complete onboarding workflow including:Employee registration in HRMS
Welcome email with credentials (auto-generated email: name@antler.com)
Manager notification email
Equipment ticket creation (Laptop, Monitor, etc.)
Introductory meeting scheduling with manager
Screenshots
1. Claude Desktop Interface with MCP Server

2. Employee Onboarding Workflow

3. Leave Management Conversation

4. Meeting Scheduling

5. Ticket Creation and Management

6. Email Notification System

Folder Structure
hr-assistant-tool/
│
├── .venv/ # Virtual environment (UV managed)
├── HRMS/ # HR Management System modules
│ ├── __init__.py # Package initialization
│ ├── employee_manager.py # Employee CRUD and hierarchy
│ ├── leave_manager.py # Leave balance and history
│ ├── meeting_manager.py # Meeting scheduling logic
│ ├── ticket_manager.py # IT request ticketing
│ ├── schemas.py # Pydantic models for validation
│ └── unified_tests.py # Integration test suite
│
├── .env # Environment variables (Gmail SMTP)
├── .gitignore # Git exclusions
├── .python-version # Python version specification
├── emails.py # SMTP email sender with TLS
├── main.py # Entry point (placeholder)
├── mcp_server.py # FastMCP server and tool definitions
├── pyproject.toml # UV project configuration
├── utils.py # Data seeding utilities
└── uv.lock # UV lock fileSetup Instructions
Prerequisites
UV Package Manager (Install from https://docs.astral.sh/uv)
Python 3.12+
Claude Desktop (Latest version with MCP support)
Gmail account with App Password for SMTP
1. Clone the Repository
git clone https://github.com/inv-fourier-transform/hr-assistant-tool.git
cd hr-assistant-tool2. Initialize UV Environment
uv venv --python 3.12
source .venv/bin/activate # On Windows: .venv\Scripts\activate3. Install Dependencies
uv pip install -e .4. Configure Environment Variables
Create a .env file in the root directory:
GMAIL=your_email@gmail.com
EMAIL_PWD=your_gmail_app_passwordNote: Use an App Password if you have 2FA enabled.
5. Configure Claude Desktop
Add the MCP server configuration to Claude Desktop:
Windows (PowerShell)
$json = @{
"mcpServers" = @{
"HRizzle-HR-Assist" = @{
"command" = "uv"
"args" = @(
"--directory"
"C:\path\to\hr-assistant-tool"
"run"
"mcp_server.py"
)
}
}
} | ConvertTo-Json -Depth 10
$json | Set-Content "$env:APPDATA\Claude\settings.json"macOS/Linux
cat <<EOF > ~/Library/Application\ Support/Claude/settings.json
{
"mcpServers": {
"HRizzle-HR-Assist": {
"command": "uv",
"args": [
"--directory",
"/path/to/hr-assistant-tool",
"run",
"mcp_server.py"
]
}
}
}
EOFRestart Claude Desktop to load the MCP server.
Running the Application
Method 1: Direct Server (Development)
Run the MCP server directly for testing:
uv run mcp_server.pyThe server runs on stdio transport, waiting for MCP client connections.
Method 2: Claude Desktop Integration (Production Use)
Open Claude Desktop
Verify the server connection in the MCP settings (green indicator)
The server tools will appear as available functions in conversations
Usage Examples
Employee Onboarding
Natural Language Input
Onboard Steven Devereux reporting to Ajamu Baraka with email steven.devereux@antler.comAutomated Workflow
Creates employee record (auto-assigned ID: E009)
Sends welcome email with credentials
Notifies manager (Ajamu Baraka)
Creates equipment tickets (Laptop, Monitor)
Schedules introductory meeting
Leave Management
Apply for Leave
Apply for 3 days leave starting 2025-12-20 for E003Check Balance
What's the leave balance for Natwar Lal?Meeting Operations
Schedule
Schedule a performance review meeting for E001 on 2025-12-15 at 14:00Cancel
Cancel the meeting on 2025-12-15 at 14:00 for E001MCP Protocol Details
Transport
Type: Standard I/O (stdio)
Protocol: Model Context Protocol (MCP) 1.0
Server Capabilities
Tools: 12 registered tools for HR operations
Prompts: 1 specialized prompt (
onboard_new_employee)Resources: None (stateless API wrapper)
Data Validation
All inputs validated using Pydantic 2.10+ schemas:
EmployeeCreate (emp_id, name, manager_id, email)LeaveApplyRequest (emp_id, List[date])MeetingCreate (emp_id, meeting_dt, topic)MeetingCancelRequest (emp_id, meeting_dt, optional topic)TicketCreate (emp_id, item, reason)TicketStatusUpdate (status)
Technical Architecture
HRMS Module Design
Component | Responsibility | Key Features |
EmployeeManager | Employee lifecycle | Auto-incrementing IDs (E001...), fuzzy name search, manager hierarchy, direct reports |
LeaveManager | Leave tracking | 20-day default balance, ISO date history, balance validation |
MeetingManager | Calendar management | Conflict detection, ISO datetime handling, topic-based cancellation |
TicketManager | IT requests | Auto-incrementing IDs (T0001...), status workflow, filtering |
EmailSender | SMTP operations | TLS/SSL support, HTML/plain text, attachments, Gmail compatibility |
Data Seeding (utils.py)
The seed_services() function populates:
8 employees (2 leadership + 6 reports)
Random leave balances (5–20 days) and history
2–6 meetings per employee (next 10 days)
8–15 equipment tickets
Email System
Provider: Gmail SMTP (
smtp.gmail.com:587)Security: TLS encryption with STARTTLS
Format: Supports both HTML and plain text
Attachments: MIME type detection and multi-file support
API Reference (Internal)
EmployeeManager
add_employee(EmployeeCreate) -> None
get_manager(emp_id: str) -> str
search_employee_by_name(name_query: str) -> List[str]
get_employee_details(emp_id: str) -> Dict
get_direct_reports(manager_id: str) -> List[str]LeaveManager
get_leave_balance(emp_id: str) -> str
apply_leave(LeaveApplyRequest) -> str
get_leave_history(emp_id: str) -> strMeetingManager
schedule_meeting(MeetingCreate) -> str
get_meetings(emp_id: str) -> List[Dict]
cancel_meeting(MeetingCancelRequest) -> strTicketManager
create_ticket(TicketCreate) -> str
update_ticket_status(TicketStatusUpdate, ticket_id: str) -> str
list_tickets(employee_id=None, status=None) -> List[Dict]Testing
Run unified integration tests:
uv run HRMS/unified_tests.pyThis executes:
Employee creation and hierarchy search
Leave application and balance queries
Meeting scheduling and cancellation
Ticket creation and status updates
Contributing
Contributions are welcome! Please open an issue or submit a pull request for improvements, additional HR tools, or bug fixes.
Roadmap
Calendar integration (Google Calendar API)
Slack notifications webhook
Leave approval workflows
Reporting and analytics dashboard
Database persistence (PostgreSQL)
License
This project is licensed under the MIT License.
Because onboarding should feel like a welcome, not a paperwork storm.
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.
Latest Blog Posts
- 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/inv-fourier-transform/HRizzle-AI-HR-assistant'
If you have feedback or need assistance with the MCP directory API, please join our Discord server