McpPaylocity MCP Server

A Model Context Protocol (MCP) server to fetch data from Paylocity API endpoints.

Local serverstdio

What is the McpPaylocity MCP server?

A Model Context Protocol (MCP) server to fetch data from Paylocity API endpoints. That is what the mcppaylocity mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The tools it exposes

The server publishes 9 tools. What each one is for:

  • fetch_employees — Fetches all employees for a company
  • fetch_employee_details — Fetches details for a specific employee
  • fetch_employee_earnings — Fetches earnings data for a specific employee
  • fetch_company_codes — Fetches company codes for a specific resource
  • fetch_employee_local_taxes — Fetches local taxes for a specific employee
  • fetch_employee_paystatement_details — Fetches pay statement details for a specific date
  • Resources — The server implements Paylocity API resources with: - Custom paylocity:// URI scheme for accessing Paylocity data - The following resources are
  • Tools — The server implements the following tools: - fetch_employees - Fetches all employees for a company - Takes optional company_id parameter -
  • Debugging — Since MCP servers run over stdio, debugging can be challenging. For the best debugging experience, we strongly recommend using the [MCP

Getting it running

Installation goes through your MCP client rather than a global install: point it at @modelcontextprotocol/inspector on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

What it needs from you

Configuration is passed through the environment: PAYLOCITY_CLIENT_ID, PAYLOCITY_CLIENT_SECRET, UV_PUBLISH_TOKEN. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

How it compares

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. McpPaylocity's toolset — fetch_employees, fetch_employee_details, fetch_employee_earnings and 6 more — is a fair guide to whether it matches your workflow. It is maintained by mz462; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 9 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch McpPaylocity.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
fetch_employeesFetches all employees for a company
fetch_employee_detailsFetches details for a specific employee
fetch_employee_earningsFetches earnings data for a specific employee
fetch_company_codesFetches company codes for a specific resource
fetch_employee_local_taxesFetches local taxes for a specific employee
fetch_employee_paystatement_detailsFetches pay statement details for a specific date
ResourcesThe server implements Paylocity API resources with: - Custom paylocity:// URI scheme for accessing Paylocity data - The following resources are available: - paylocity://employees/{company_id} - List all employees for a c
ToolsThe server implements the following tools: - fetch_employees - Fetches all employees for a company - Takes optional company_id parameter - fetch_employee_details - Fetches details for a specific employee - Takes required
DebuggingSince MCP servers run over stdio, debugging can be challenging. For the best debugging experience, we strongly recommend using the [MCP Inspector](https://github.com/modelcontextprotocol/inspector).

How to install the McpPaylocity MCP server

"mcpServers": {
    "mcpPaylocity": {
      "command": "uv",
      "args": [
        "--directory",
        "/path/to/mcpPaylocity",
        "run",
        "mcppaylocity"
      ]
    }
  }

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
PAYLOCITY_CLIENT_IDConfiguration value read at startup.Optional
PAYLOCITY_CLIENT_SECRETCredential the server authenticates with.Yes
UV_PUBLISH_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use McpPaylocity to fetch employees.
  • Use McpPaylocity to fetch employee details.
  • Use McpPaylocity to fetch employee earnings.

Frequently asked questions

It connects McpPaylocity to MCP-compatible AI assistants such as Claude and Cursor, exposing 9 tools (fetch_employees, fetch_employee_details, fetch_employee_earnings, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with McpPaylocity directly.