Skip to main content
Glama
Ayush-og
by Ayush-og

šŸ¢ Atliq HRMS Assist — MCP Server

An AI-powered Human Resource Management System (HRMS) built as a Model Context Protocol (MCP) server. It connects directly to Claude Desktop, allowing you to manage employees, leaves, meetings, tickets, and emails using natural language.


šŸ“‹ Table of Contents


Related MCP server: HRizzle-HR-Assist

🌟 Overview

Atliq HRMS Assist is an MCP server that exposes HR management capabilities as tools and prompts for AI assistants. Built with FastMCP and Pydantic, it enables Claude to perform real HR operations — from onboarding employees to scheduling meetings — all through natural language.


✨ Features

Category

Capability

šŸ‘¤ Employee Management

Add employees, search by name, get details

🌓 Leave Management

Check balances, apply leaves, view history

šŸ“… Meeting Scheduler

Schedule, view, and cancel meetings

šŸŽ« Ticket System

Create and update equipment/IT request tickets

šŸ“§ Email Notifications

Send welcome emails, meeting invites, leave confirmations

šŸ¤– AI Prompts

Pre-built prompts for onboarding, leave, and meeting workflows


šŸ“ Project Structure

atliq-hrms-assist/
ā”œā”€ā”€ HRMS/
│   ā”œā”€ā”€ __init__.py          # Exports all managers and schemas
│   ā”œā”€ā”€ employee_manager.py  # Employee CRUD and search
│   ā”œā”€ā”€ leave_manager.py     # Leave balance and application
│   ā”œā”€ā”€ meeting_manager.py   # Meeting scheduling and cancellation
│   ā”œā”€ā”€ ticket_manager.py    # Equipment/IT ticket management
│   └── schemas.py           # Pydantic data models
ā”œā”€ā”€ src/
│   └── atliq_hrms_assist/
│       └── __init__.py
ā”œā”€ā”€ email_sender.py          # SMTP email utility
ā”œā”€ā”€ server.py                # MCP server — tools & prompts
ā”œā”€ā”€ utils.py                 # Seed data for demo employees
ā”œā”€ā”€ pyproject.toml           # Project dependencies
└── .env                     # Environment variables (not committed)

āœ… Prerequisites


āš™ļø Installation

1. Clone the repository

git clone https://github.com/Ayush-og/atliq-hrms-assist.git
cd atliq-hrms-assist

2. Install dependencies using uv

uv sync

Or install manually:

uv add "mcp[cli]<2.0.0" pydantic python-dotenv

šŸ” Configuration

Create a .env file in the project root:

CB_EMAIL=your_gmail_address@gmail.com
CB_EMAIL_PWD=your_gmail_app_password

Note: Use a Gmail App Password, not your regular Gmail password. Enable 2FA on your account first.


šŸš€ Running the MCP Server

Test that the server runs without errors:

uv run python server.py

šŸ”— Connecting to Claude Desktop

  1. Open Claude Desktop → Settings → Developer → Edit Config.

  2. Add the following to claude_desktop_config.json:

{
  "mcpServers": {
    "atliq-hr-assist": {
      "command": "C:\\Users\\<your-username>\\.local\\bin\\uv.exe",
      "args": [
        "--directory",
        "C:\\path\\to\\atliq-hrms-assist",
        "run",
        "python",
        "server.py"
      ]
    }
  }
}
  1. Save and restart Claude Desktop.

  2. The atliq-hr-assist connector will appear as 🟢 Connected.


šŸ› ļø Available Tools

šŸ‘¤ Employee Tools

Tool

Description

Parameters

add_employee

Add a new employee

emp_name, manager_id, email

get_employee_details

Get employee details by name

name

🌓 Leave Manager Tools

Tool

Description

Parameters

get_leave_balance

Check remaining leave days

employee_id

apply_leave

Apply for leave on specific dates

employee_id, leave_dates

get_leave_history

View past leave records

employee_id

šŸ“… Meeting Scheduler Tools

Tool

Description

Parameters

schedule_meeting

Schedule a meeting

emp_id, meeting_dt, topic

get_meetings

View all scheduled meetings

employee_id

cancel_meeting

Cancel an existing meeting

emp_id, meeting_dt, topic

šŸŽ« Ticket Tools

Tool

Description

Parameters

create_ticket

Raise an equipment/IT request

emp_id, item, reason

update_ticket_status

Update ticket status

ticket_id, status

šŸ“§ Email Tool

Tool

Description

Parameters

send_email

Send email to one or more recipients

subject, body, to_emails


šŸ¤– Available Prompts

These are pre-built multi-step workflows you can invoke from Claude Desktop via "Add from atliq-hr-assist".

1. onboard_new_employee

Onboards a new employee end-to-end.

Input

Description

employee_name

Full name of the new employee

manager_name

Full name of the reporting manager

Steps performed automatically:

  • Adds employee to HRMS

  • Sends welcome email with login credentials

  • Notifies the manager

  • Raises equipment tickets (laptop, ID card, etc.)


2. apply_leave_request

Processes a leave application for an employee.

Input

Description

employee_name

Full name of the employee

leave_dates

Dates for leave (e.g. "2026-08-22, 2026-08-23")

Steps performed automatically:

  • Looks up employee ID

  • Checks leave balance

  • Applies leave if balance is sufficient

  • Sends confirmation email


3. schedule_meeting_request

Schedules a meeting and sends invites.

Input

Description

employee_name

Employee's full name

manager_name

Manager's full name

meeting_date

ISO datetime (e.g. "2026-08-20T10:00:00")

topic

Meeting subject

Steps performed automatically:

  • Looks up both employee and manager IDs

  • Schedules the meeting

  • Sends invitation email to both parties


šŸ’” Usage Examples

Ask Claude in natural language:

"Onboard Peter Pandey with Tony Sharma as his manager."
"Apply leave for Tony Sharma on August 22 and 23, 2026."
"Schedule a 1:1 meeting between Peter Pandey and Tony Sharma on August 20 at 10 AM."
"Check leave balance for employee E004."
"Create a ticket for Peter Pandey to get a new laptop."

šŸ§‘ā€šŸ’» Author

Ayush — @Ayush-og


šŸ“„ License

This project is open source and available under the MIT License.

Install Server
F
license - not found
A
quality
C
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.

Related MCP Servers

View all related MCP servers

Related MCP Connectors

  • An MCP server that integrates with Discord to provide AI-powered features.

  • MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.

  • An AI concierge that turns static forms into adaptive AI conversations. From any MCP client.

View all MCP Connectors

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/Ayush-og/atliq-hrms-assist'

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