Skip to content
MCP-BridgeMCP-Bridge
Finance & Payments

HRIS API MCP Config

Welcome to the HRIS API. You can use this API to access all HRIS API endpoints. ## Base URL The base URL for all API requests is `https://unify.apideck.com` We also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`

Config URL

Use this URL in any MCP-compatible client to fetch the config automatically.

https://mcpbridge.org/config/apideck-com-hris.json

One-Click Install

Copy the snippet for your MCP client and paste it in — zero editing required.

Claude Desktop

Add to claude_desktop_config.json

{
  "mcpServers": {
    "apideck-com-hris": {
      "command": "npx",
      "args": [
        "-y",
        "@mcp/apideck-com-hris"
      ],
      "env": {
        "HRIS_API_API_KEY": "your_hris_api_api_key"
      }
    }
  }
}

Cursor

Settings → MCP Servers → Add

{
  "mcpServers": {
    "apideck-com-hris": {
      "url": "https://mcpbridge.org/config/apideck-com-hris.json"
    }
  }
}

VS Code

Use with MCP extension

{
  "mcpServers": {
    "apideck-com-hris": {
      "url": "https://mcpbridge.org/config/apideck-com-hris.json"
    }
  }
}

Configuration JSON

Use curl https://mcpbridge.org/config/apideck-com-hris.json to fetch programmatically.

{
  "mcpServers": {
    "apideck-com-hris": {
      "command": "npx",
      "args": ["-y","@mcp/apideck-com-hris"],
      "env": {
      "HRIS_API_API_KEY": "your_hris_api_api_key"
}
    }
  }
}

How to Use

Claude Desktop

Paste the config JSON into your claude_desktop_config.json.

Full instructions →

Cursor

Go to Cursor Settings → MCP Servers → Add with the JSON above.

CLI / curl

Fetch the config programmatically:

curl https://mcpbridge.org/config/apideck-com-hris.json

Environment Variables

HRIS_API_API_KEY

Replace your_hris_api_api_key with your actual hris api api key

Endpoints

GET/hris/companies

List Companies

POST/hris/companies

Create Company

GET/hris/companies/{id}

Get Company

DELETE/hris/companies/{id}

Delete Company

PATCH/hris/companies/{id}

Update Company

GET/hris/departments

List Departments

POST/hris/departments

Create Department

GET/hris/departments/{id}

Get Department

DELETE/hris/departments/{id}

Delete Department

PATCH/hris/departments/{id}

Update Department