HR Assist MCP Server
An MCP server that automates HR onboarding tasks including employee management, email, ticketing, meeting scheduling, and leave management, enabling AI agents to handle new-hire workflows from a single prompt.
README
๐งโ๐ผ HR Assist โ MCP Server
An MCP (Model Context Protocol) server that automates HR onboarding tasks โ HRMS registration, welcome emails, IT ticketing, meeting scheduling, and leave management โ so an AI agent like Claude can handle the entire new-hire workflow from a single prompt. ๐
โจ Features
| Area | What it does |
|---|---|
| ๐ค Employee Management | Add employees, fetch details by (fuzzy) name search, look up managers & direct reports |
| ๐ง Email | Send plain-text or HTML emails (with optional attachments) via SMTP |
| ๐ซ Ticketing | Raise, update, and list IT/equipment tickets (laptop, ID card, etc.) |
| ๐ Meetings | Schedule, list, and cancel meetings for any employee |
| ๐ด Leave Management | Check leave balance, apply for leave, view leave history |
| โก Ready-made Prompt | Built-in onboard_new_employee MCP prompt that chains all of the above into one onboarding flow |
๐๏ธ Project Structure
atliq-hr-assist/
โโโ server.py # FastMCP server โ defines all MCP tools & the onboarding prompt
โโโ emails.py # EmailSender โ SMTP email utility (plain/HTML + attachments)
โโโ utils.py # seed_services() โ seeds in-memory demo data
โโโ HRMS/
โ โโโ __init__.py
โ โโโ employee_manager.py # EmployeeManager โ employee CRUD + org hierarchy
โ โโโ meeting_manager.py # MeetingManager โ schedule/list/cancel meetings
โ โโโ leave_manager.py # LeaveManager โ leave balance & history
โ โโโ ticket_manager.py # TicketManager โ IT/equipment tickets
โ โโโ schemas.py # Pydantic models for all entities
โโโ pyproject.toml
โโโ .python-version
โโโ .gitignore
โโโ .env # ๐ local secrets โ never committed
๐ Note:
server.pydoesfrom HRMS import *, so the manager classes (employee_manager.py,meeting_manager.py, etc.) andschemas.pyshould live inside anHRMS/package folder alongside__init__.py.
๐ ๏ธ Requirements
- ๐ Python 3.10+
- Dependencies (see
pyproject.toml):fastmcp>=3.4.5mcp[cli]>=1.9.4pydantic>=2.13.4python-dotenv
โ๏ธ Setup
1. Clone & install
git clone https://github.com/Vraj-Data-Scientist/hr-onboarding-agent-with-MCP.git
cd hr-onboarding-agent-with-MCP
# using uv (recommended)
uv sync
# or using pip
pip install -e .
2. Configure environment variables
Create a .env file in the project root (already git-ignored ๐):
EMAIL=your-smtp-email@gmail.com
EMAIL_PWD=your-app-specific-password
โ ๏ธ Security note: Use a Gmail App Password, not your real account password, and never commit
.envto version control. If real credentials were ever pushed to a repo, rotate/revoke them immediately.
3. Run the server standalone (optional, for testing)
python server.py
This starts the MCP server over stdio transport.
๐ Connecting to Claude as an MCP Client
This server speaks MCP over stdio, so it plugs directly into any MCP-compatible Claude client.
๐ฅ๏ธ Option A โ Claude Desktop
- Open your Claude Desktop config file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
- macOS:
- Add this server under
mcpServers:
{
"mcpServers": {
"hr-onboarding-agent": {
"command": "uv",
"args": [
"run",
"--directory",
"/absolute/path/to/hr-onboarding-agent-with-MCP",
"mcp",
"run",
"server.py"
],
"env": {
"EMAIL": "your-smtp-email@gmail.com",
"EMAIL_PWD": "your-app-specific-password"
}
}
}
}
- Restart Claude Desktop. A ๐จ tools icon should appear, showing the
hr-assistserver connected with tools likeadd_employee,send_email,create_ticket,schedule_meeting, and more. - Prompt Claude naturally, e.g.:
"Onboard a new employee named Priya Nair reporting to Tony Sharma."
๐ก Using the built-in onboarding prompt
The server exposes a ready-made MCP prompt, onboard_new_employee, which Claude Desktop (via the / prompt picker) and Claude Code can surface directly โ just supply employee_name and manager_name, and the full onboarding flow runs end-to-end.
๐งช Example
Prompt:
Onboard a new employee with the following details:
- Name: Vraj Dobariya
- Manager Name: Tony Sharma
What happens automatically:
- ๐ค Employee added to HRMS with correct manager mapping
- ๐ง Welcome email sent with generated login
- ๐จ Manager notified of the new hire
- ๐ซ Tickets raised for laptop, ID card, and other equipment
- ๐ Introductory meeting scheduled between employee and manager
Recommended Servers
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.
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.
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.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
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.
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.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
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.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.