Skip to main content
Glama

HR-ASSIST: Agentic AI for HR Automation

Python Claude MCP Status

An Agentic AI system that automates end-to-end HR workflows, from onboarding to scheduling, using the Model Context Protocol (MCP).


Overview

HR-ASSIST is an intelligent automation system built as part of the Codebasics Gen AI Bootcamp.

It transforms the Claude Desktop App into a powerful HR assistant capable of interacting with local databases, sending real emails, and managing calendars.

Unlike standard chatbots, HR-ASSIST uses Agentic Workflows to execute complex, multi-step tasks autonomously.

The Problem

HR managers spend hours toggling between HRMS software, email clients, and ticketing systems to onboard a single employee.

The Solution

A unified interface where natural language turns into action.

  • Input: "Onboard Ruchitha as a Data Analyst."

  • Output: Employee record created + Welcome email sent + IT ticket raised + Orientation meeting scheduled.


Related MCP server: MCP FactorialHR

See it in Action

1. Agentic Scheduling

2. Pre-built Prompt Templates

Scheduling Demo

Onboarding UI

The Agent intelligently parses dates to schedule meetings.

Custom UI forms for structured data entry.


Key Features

Feature

Description

MCP Prompts

Pre-configured templates (UI forms) for complex tasks like onboarding.

HRMS Integration

Custom Tool execution to search, add, and update employee records.

Email Automation

automated SMTP integration to send secure credentials via Gmail.

Ticket Management

Auto-generation of support tickets for IT equipment.

Intelligent Calendar

Natural language date parsing for meeting management.


Technical Architecture

graph TD
    User[HR Manager] -->|Selects Template| UI[Claude Desktop UI]
    UI -->|MCP Protocol| Server[HR-Assist Python Server]
    Server -->|Write| DB[(Local HR Database)]
    Server -->|Send| SMTP[Gmail API]
    Server -->|Create| Ticket[Ticket System]

Tech Stack

  • Language: Python 3.10+

  • Protocol: Model Context Protocol (MCP) by Anthropic

  • Dependency Management: uv

  • Libraries: fastmcp, pydantic, python-dotenv


Repository Structure


atliq-hr-assist/
├── hrms/                   # Core Business Logic Package
│   ├── __init__.py         # Package initialization
│   ├── employee_manager.py # Employee CRUD operations
│   ├── leave_manager.py    # Leave balance logic
│   ├── meeting_manager.py  # Calendar scheduling
│   ├── ticket_manager.py   # IT support ticketing
│   └── schemas.py          # Pydantic data models
├── images/                 # Documentation screenshots
│   ├── demo_onboard.png
│   └── demo_schedule.png
├── server.py               # Main MCP Server Entry Point
├── emails.py               # SMTP Email Handler
├── utils.py                # Helper functions (Data seeding)
├── .env                    # Email and Passwords (Excluded from repo)
├── .gitignore              # Git ignore rules
├── pyproject.toml          # Project dependencies configuration
└── uv.lock                 # Dependency lock file (ensures reproducibility)

Setup & Installation

  1. Clone the Repository

git clone [https://github.com/YOUR_USERNAME/hr-assist-mcp-agent.git](https://github.com/YOUR_USERNAME/hr-assist-mcp-agent.git)
cd hr-assist-mcp-agent
  1. Install Dependencies

uv init
uv add "mcp[cli]" python-dotenv
  1. Configure Environment Create a .env file for your credentials:

CB_EMAIL=your_email@gmail.com
CB_EMAIL_PWD=your_app_password
  1. Connect to Claude Add the server path to your claude_desktop_config.json:

{
  "mcpServers": {
    "hr-assist": {
      "command": "uv",
      "args": ["--directory", "ABSOLUTE_PATH", "run", "server.py"],
      "env": { "CB_EMAIL": "...", "CB_EMAIL_PWD": "..." }
    }
  }
}

Usage Guide

Method 1: Natural Language

Simply type in the chat bar:

"Schedule a meeting for employee E001 tomorrow at 10 AM regarding Project Kickoff."

  1. Click the Attach button or type / in Claude.

  2. Select onboard_new_employee.

  3. Fill in the form fields:

  • Employee Name: Ruchitha

  • Manager Name: Dhaval

  1. Hit Run. The Agent will execute the entire workflow automatically.


Future Improvements

  • Database: Migrate from in-memory storage to SQLite/PostgreSQL.

  • Frontend: Build a Streamlit dashboard to view the generated tickets.

  • Auth: Add Role-Based Access Control (RBAC) for manager approvals.


📄 License

  • Developed as part of the Codebasics Gen AI Bootcamp.

  • Copyright © Codebasics Inc.

F
license - not found
-
quality - not tested
D
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

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/ruchitha-meenakshi/smart-onboarding-assistant'

If you have feedback or need assistance with the MCP directory API, please join our Discord server