HR-ASSIST
Allows sending automated emails via Gmail SMTP for HR communications such as welcome emails and credential delivery.
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., "@HR-ASSISTOnboard Ruchitha as a Data Analyst"
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.
HR-ASSIST: Agentic AI for HR Automation
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 |
|
|
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:
uvLibraries:
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
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
Install Dependencies
uv init
uv add "mcp[cli]" python-dotenv
Configure Environment Create a
.envfile for your credentials:
CB_EMAIL=your_email@gmail.com
CB_EMAIL_PWD=your_app_password
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."
Method 2: MCP Prompt Templates (Recommended)
Click the Attach button or type
/in Claude.Select
onboard_new_employee.Fill in the form fields:
Employee Name:
RuchithaManager Name:
Dhaval
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.
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
- 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/ruchitha-meenakshi/smart-onboarding-assistant'
If you have feedback or need assistance with the MCP directory API, please join our Discord server

