Integration Assistant MCP

Model Context Protocol (MCP) for API Documentation

Overview

The Integration Assistant MCP enables AI-assisted development tools to securely access and interact with Paylocity API documentation using natural language to reduce the time it takes to discover, design, and implement your integration. When building integrations with Paylocity APIs, partner and client developers can quickly identify the right APIs, understand integration workflows, retrieve relevant documentation, and use that information directly within MCP-enabled coding assistants and code editors.


Setup developer tools to use MCP

This MCP server can be connected to development tools that support MCP client functionality to enable natural language discovery of Paylocity APIs and documentation.

Below are some quick start steps for popular tools. It is recommended to refer to the tool documentation for connector configuration requirements and for any troubleshooting.


Claude Code

Requirements

  • Claude subscription enabling MCP Agent capabilities

Setup Steps

Adding an MCP server through the command line will make it available in the Claude Code extension for VS Code as well.

  1. Open any command prompt or terminal of your choosing.
  2. Run the following command(s):
    claude mcp add --transport http Paylocity_API_Documentation https://developer.paylocity.com/mcp?project=integrations
    
    # Optional: Available across all projects for the current user
    claude mcp add --scope user --transport http Paylocity_API_Documentation https://developer.paylocity.com/mcp?project=integrations
    
    # Optional: Available only to the current project
    claude mcp add --scope project --transport http Paylocity_API_Documentation https://developer.paylocity.com/mcp?project=integrations

Verify setup was completed successfully

  • Run claude mcp list to verify the MCP server was added.
  • Run claude mcp get Paylocity_API_Documentation to verify the MCP server is connected.

Claude is now ready to begin referencing Paylocity API documentation for any prompts.


Testing the MCP Client

When testing whether the MCP Client is properly configured and connected, verify that the Integrated Development Environment (IDE) is making tool calls when retrieving documentation. Tool calls are typically recorded in the chat log, and the agent may request permission before executing a tool.

Example Prompts

What APIs does Paylocity provide?

Which Paylocity endpoints would provide me with a company EIN and an employee name and ID?

What would my request body look like for getting a list of company Job codes and what would the response look like?

How can I get all employee time clock data for a given company within a specified time frame? 

Did this page help you?