HRizzle-HR-Assist

HRizzle-HR-Assist

MCP-based HR automation tool that streamlines employee onboarding, leave management, and equipment requests via natural language conversations.

Category
Visit Server

README

<p align="center"> <img src="https://img.icons8.com/ios-filled/200/6366f1/conference-call.png" width="120" alt="HRizzle HR Assist" /> </p>

<h2 align="center">👔 HRizzle | AI-Powered HR Assistant</h2> <p align="center"><b>MCP-based HR automation tool that streamlines employee onboarding, leave management, and equipment requests.</b></p>

<p align="center"> <a href="https://modelcontextprotocol.io/"><img alt="MCP" src="https://img.shields.io/badge/MCP-1.0.0-6366f1?logo=anthropic&logoColor=white"></a> <a href="https://docs.astral.sh/uv/"><img alt="UV" src="https://img.shields.io/badge/uv-0.6.0-2396ED?logo=python&logoColor=white"></a> <a href="https://claude.ai/download"><img alt="Claude Desktop" src="https://img.shields.io/badge/Claude%20Desktop-MCP%20Client-d97757?logo=anthropic&logoColor=white"></a> <a href="https://pydantic.dev/"><img alt="Pydantic" src="https://img.shields.io/badge/Pydantic-2.10.0-9200CE?logo=pydantic&logoColor=white"></a> <a href="https://www.python.org/"><img alt="Python" src="https://img.shields.io/badge/Python-3.12+-3776AB?logo=python&logoColor=white"></a> </p>

<p align="center"> <b>Architecture:</b> MCP Server + Claude Desktop   |   <b>Package Manager:</b> UV   |   <b>Features:</b> 8 Tools + Onboarding Prompt </p>

<p align="center"> A Model Context Protocol (MCP) implementation that transforms Claude Desktop into an intelligent HR assistant. Manages the complete employee lifecycle from onboarding to daily HR operations through natural language conversations. </p>


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.

MCP Tools & Capabilities

Available Tools

Tool Purpose Input Parameters Return
add_employee Create new employee record emp_name, manager_id/name, email Success confirmation with emp_id
get_employee_details Fetch employee information emp_name (fuzzy match) Employee dict with manager and email
schedule_meeting Book meetings with conflict check emp_id, meeting_datetime (ISO), topic Confirmation or conflict error
fetch_all_meetings List employee meetings emp_id Chronologically sorted meeting list
cancel_scheduled_meeting Remove scheduled meetings emp_id, meeting_datetime, optional topic Cancellation confirmation
apply_for_leave Submit leave requests emp_id, leave_dates (YYYY-MM-DD list) Days booked + remaining balance
get_employee_leave_balance Check remaining leaves emp_id Balance string (e.g., "15 days remaining")
get_employee_leave_history View past leave records emp_id Formatted date list
create_ticket Raise equipment/asset requests emp_id, item, reason Ticket ID (T0001 format)
update_ticket_status Change ticket state ticket_id, status (Open/In Progress/Closed/Rejected) Status update confirmation
list_tickets Filter and view tickets emp_id, optional status List of matching tickets
send_email 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

Claude Desktop Interface

2. Employee Onboarding Workflow

Onboarding Onboarding Complete Onboarding Complete

3. Leave Management Conversation

Leave Application

4. Meeting Scheduling

Meeting Schedule Meeting List

5. Ticket Creation and Management

Create Ticket List Tickets

6. Email Notification System

Email Notification Email Notification Email Notification


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 file

Setup 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-tool

2. Initialize UV Environment

uv venv --python 3.12
source .venv/bin/activate  # On Windows: .venv\Scripts\activate

3. 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_password

Note: 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"
      ]
    }
  }
}
EOF

Restart 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.py

The server runs on stdio transport, waiting for MCP client connections.


Method 2: Claude Desktop Integration (Production Use)

  1. Open Claude Desktop
  2. Verify the server connection in the MCP settings (green indicator)
  3. 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.com

Automated 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 E003

Check 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:00

Cancel

Cancel the meeting on 2025-12-15 at 14:00 for E001

MCP 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) -> str

MeetingManager

schedule_meeting(MeetingCreate) -> str
get_meetings(emp_id: str) -> List[Dict]
cancel_meeting(MeetingCancelRequest) -> str

TicketManager

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.py

This 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.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured