🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@emplyx/mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@emplyx/mcp-server

MCP Server for Emplyx HR Platform - Access 346+ HR management tools via Model Context Protocol

latest
Source
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

@emplyx/mcp-server

MCP (Model Context Protocol) server for Emplyx HR Platform. Exposes 346+ HR management tools to AI assistants like Claude.

Installation

npm install -g @emplyx/mcp-server
# or use with npx
npx @emplyx/mcp-server

Configuration

1. Get an API Key

  • Log into your Emplyx admin panel
  • Go to Settings > API Keys
  • Create a new API key with the required scopes

2. Configure Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "emplyx": {
      "command": "npx",
      "args": ["@emplyx/mcp-server"],
      "env": {
        "EMPLYX_API_KEY": "emplyx_live_your_key_here"
      }
    }
  }
}

Configuration File Location

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json

Environment Variables

VariableRequiredDescription
EMPLYX_API_KEYYesYour Emplyx API key (format: emplyx_live_xxx)
EMPLYX_API_URLNoAPI endpoint (default: production)

Available Tools

The server exposes tools based on your API key's scopes:

ScopeTools
employees:readSearch employees, get employee details
employees:writeCreate, update, deactivate employees
schedules:readList shifts, view schedules
schedules:writeAssign shifts, manage schedules
absences:readView absence requests, balances
absences:writeCreate/approve/reject absence requests
clockings:readView time entries, timelines
clockings:writeCreate corrections, approve requests
documents:readList documents
documents:writeUpload, manage documents
*Full access to all 346+ tools

Example Usage

Once configured, you can ask Claude things like:

  • "Show me employees who are on vacation this week"
  • "Create an absence request for Juan from Feb 1-5"
  • "What are the active shifts in the company?"
  • "Search for employees named Maria"

Supported Platforms

  • macOS (arm64, x64)
  • Linux (x64, arm64)
  • Windows (x64)

Troubleshooting

"Invalid API Key"

Ensure your API key:

  • Starts with emplyx_live_
  • Has not been revoked
  • Has the required scopes

"Binary not found"

The package includes pre-compiled binaries. If missing:

  • Reinstall the package
  • Check if your platform is supported

License

MIT - See LICENSE for details.

Support

Keywords

mcp

FAQs

Package last updated on 31 Jan 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts