HR Partner MCP Server
OfficialClick 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 Partner MCP ServerWho is on leave next week?"
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 Partner MCP Server
A Model Context Protocol (MCP) server that lets AI assistants (Claude Desktop, Claude Code, ChatGPT, and any other MCP-compatible client) read and write data in your HR Partner company using the HR Partner public API.
Ask things like:
"Who is on leave next week?"
"List all employees in the London office who started this year"
"Show me pending expense claims for the Warehouse department"
"Create a new applicant for the Forklift Driver job and move them to the Interview stage"
"What are the leave balances for employee EMP001?"
Prerequisites
An active HR Partner subscription (trial or paid).
Your company API key: in HR Partner go to Setup -> Configure -> Integrations, switch on API access (it is off by default) and copy the key. Keep it secret; anyone with the key can read your company data.
Node.js 18 or newer.
Related MCP server: Rippling MCP Server
Disclaimer
This MCP server is an early Beta prototype, and is subject to change at any time without notice (including removal from this repository).
This MCP server may expose data to the user that could be private (i.e. contact details, salary information, Tax/SSN numbers etc.). Please ensure that you write your own SKILL.md or adjust your prompts to prevent this server from exposing anything that is critical.
This MCP server also does not respect the Admin user permissions for certain Departments, Locations, Groups or module access like our actual platform does. Once again, you may have to tailor your prompting or SKILL file to build in these restrictions yourselves.
Our support or development team do not provide support for anyone who may be using this MCP server, nor do we accept responsibility should there be any inadvertent access of sensitive information, or any data corruption caused as a result of using this server.
Please also be aware that using this MCP server will mean that returned data will be processed using third party LLMs that are outside the control of HR Partner, and we cannot restrict those third party LLMs from using your data for training purposes or other context within the LLM.
Installation
npm install
npm run buildThis produces build/index.js, which is the server entry point.
Configuration
The server speaks MCP over stdio and needs your API key in the environment:
Variable | Required | Description |
| Yes | Your HR Partner API key |
| No | API base URL, defaults to |
Claude Desktop
Add to claude_desktop_config.json
(macOS: ~/Library/Application Support/Claude/claude_desktop_config.json,
Windows: %APPDATA%\Claude\claude_desktop_config.json):
{
"mcpServers": {
"hrpartner": {
"command": "node",
"args": ["/absolute/path/to/mcp/build/index.js"],
"env": {
"HR_PARTNER_API_KEY": "paste-your-api-key-here"
}
}
}
}Restart Claude Desktop after saving.
Claude Code
claude mcp add hrpartner \
--env HR_PARTNER_API_KEY=paste-your-api-key-here \
-- node /absolute/path/to/mcp/build/index.jsChatGPT and other MCP clients
Any client that supports MCP stdio servers can use this server with the same building blocks:
Command:
nodeArgs:
["/absolute/path/to/mcp/build/index.js"]Environment:
HR_PARTNER_API_KEY=<your key>
Refer to your client's documentation for where to register a local MCP server.
Publishing / npx usage
If this package is published to npm (or installed from a git URL), clients can run it without a local checkout:
{
"mcpServers": {
"hrpartner": {
"command": "npx",
"args": ["-y", "hrpartner-mcp-server"],
"env": { "HR_PARTNER_API_KEY": "paste-your-api-key-here" }
}
}
}Available tools
All tools map 1:1 to endpoints in the HR Partner API reference.
List tools return all matching records (the API does not paginate), so they accept a
max_records argument that truncates results client-side to keep AI context sizes manageable.
Core
Tool | Description |
| Company name, subscription, employee counts, timezone; good connectivity test |
| Employees with filters (department, location, status, dates, tags, reports-to, ...) |
| Full employee record by code: contacts, addresses, tags, custom fields |
| Create or update an employee (upsert by code), incl. custom fields, tags, contacts, addresses |
| Contact records across employees |
| Address records across employees |
Employee records
list_absences, list_assets, list_attachments, list_benefits, list_dependents,
list_education, list_grievances, list_interviews, list_notes, list_positions,
list_renewables, list_reviews, list_skills, list_training
Organisation
list_goals, list_checklists, list_birthdays, list_anniversaries,
get_library_documents, get_library_categories, get_lookup (valid filter values for 30 lists)
Leave, time and money
list_leave_requests, get_leave_request, list_leave_balances,
list_timesheets, get_timesheet, add_timeclock_entry (writes a time entry),
list_expenses (detailed / summary / transaction reports), list_projects
Performance and reminders
list_performances (optionally with form answers),
list_reminders, get_reminder, update_reminder, delete_reminder
Recruitment
list_jobs, get_job, list_applicants, get_applicant, save_applicant (upsert by email),
list_applications, get_application, save_application, get_application_stage_tracking
Security notes
The API key grants full API access to your HR Partner company. Store it only in your local MCP client configuration, never commit it to source control, and regenerate it in HR Partner if you suspect it has leaked.
API access is disabled by default in HR Partner and can be switched off at any time under Setup -> Configure -> Integrations.
The server runs locally on your machine and communicates only with
https://api.hrpartner.io.
Development
npm run build # compile TypeScript to build/
npm run dev # watch mode
npm start # run the server on stdioProject layout:
src/
index.ts server bootstrap (stdio transport, server instructions)
client.ts HR Partner REST client (x-api-key auth, error mapping, timeouts)
tools/
helpers.ts shared zod params, GET-tool registration, result formatting
employees.ts company, employees, contacts, addresses, save_employee
submodules.ts the 14 employee sub-module list endpoints
org.ts goals, checklists, birthdays, anniversaries, library, lookups
misc.ts reminders, leave, expenses, projects, performances
recruitment.ts jobs, applicants, applications, stage tracking
timesheets.ts timesheets, single timesheet, timeclock entriesMaintenance
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
- Alicense-qualityDmaintenanceEnables AI assistants to interact with BambooHR's API through natural language queries. Provides access to employee data, time off management, company files, and HR operations with comprehensive tools for workforce management.1081MIT
- AlicenseBqualityDmaintenanceConnects AI agents to the Rippling HR/IT/Finance platform to query employees, manage leave requests, and view organizational structures. It provides eighteen tools for accessing company data, employee details, and administrative activities through the Rippling API.19183MIT
- AlicenseBqualityDmaintenanceEnables interaction with the Officient HR API to manage people, days off, and salary slips through natural language.9MIT
- Flicense-qualityDmaintenanceProvides 50+ tools for interacting with Rippling's HR platform, including employee management, payroll, time tracking, benefits, recruiting, learning, devices, groups, and custom objects, all through natural language.
Related MCP Connectors
Search companies, enrich contacts, and reveal emails and phones from your AI agent.
Connect AI to your Attio CRM. Manage contacts, companies, deals, and sales pipelines. Create tasks…
Connect your team's living knowledge base — docs, data, issues, CRM — to Claude and ChatGPT.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/HR-Partner/hrpartner-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server