What is Payroll MCP Server?
The Payroll MCP Server is a TypeScript implementation of a Model Context Protocol (MCP) server designed for payroll management, enabling AI models to interact with external systems through standardized APIs.
How to use Payroll MCP Server?
To use the Payroll MCP Server, clone the repository, install the dependencies, configure the API settings in the .env
file, and run the server using npm commands.
Key features of Payroll MCP Server?
- Implements the MCP protocol for seamless LLM interactions.
- Provides payroll management tools and access to employee information.
- Supports real-time communication via Server-Sent Events (SSE).
- Includes example client for testing and demonstration.
Use cases of Payroll MCP Server?
- Managing payroll calculations for employees.
- Accessing and viewing employee information securely.
- Integrating with AI models for enhanced payroll processing.
FAQ from Payroll MCP Server?
- What is the MCP protocol?
The Model Context Protocol (MCP) allows AI models to interact with external systems in a standardized way.
- How do I authenticate API requests?
The server supports API authentication using authId and authKey, as well as partner authentication using partnerKey and clientKey.
- Can I run this server in production?
Yes, you can build and start the server for production use.
TypeScript MCP Server
A Model Context Protocol (MCP) server implementation using TypeScript and Express for payroll management.
What is MCP?
The Model Context Protocol (MCP) enables AI models to interact with external systems in a standardized way. It provides a framework for defining resources, tools, and prompts that LLMs can use to perform tasks.
For more information, visit the Model Context Protocol repository.
Features
- Implements the MCP protocol for LLM interactions
- Provides payroll management tools and employee information access
- Uses Express for HTTP handling
- Supports Server-Sent Events (SSE) for real-time communication
- Includes a client example for testing
Requirements
- Node.js 18+
- npm or yarn
Installation
- Clone the repository
- Install dependencies:
npm install
- Create a
.env
file based on the.env.example
template:
cp .env.example .env
- Update the
.env
file with your API configuration:
# API configuration
BASE_URL=http://app.localopfin.com
PORT=8089
Running the Server
Start the development server with:
npm run dev
For production:
npm run build
npm start
The server will run on port 8089 by default. You can change this by setting the PORT
environment variable in the .env
file.
Authentication
This server supports two authentication methods for API requests:
- API authentication using authId and authKey
- Partner authentication using partnerKey and clientKey
For custom authentication needs, you can modify the src/api.ts
file.
API Endpoints
GET /sse
: Server-Sent Events endpoint for MCP communicationPOST /messages
: Endpoint for clients to send messages to the MCP server
Available Resources
greeting://welcome
: A static welcome messageusers://{userId}
: A dynamic resource that returns user data
Available Tools
view-people
: View information about a specific person using employee ID (requires authId and authKey authentication)view-all-people
: View all people with optional filtering and pagination (supports both API authentication with authId/authKey or Partner authentication with partnerKey/clientKey)getEmployeeInfo
: A simplified employee information retrieval tool that returns basic employee data (name, department, role) based on employee IDcalculatePayroll
: Calculate payroll for an employee based on hours worked and hourly rate (computes gross pay, 20% tax, and net pay)
Available Interfaces
The project includes typed interfaces for API responses:
ApiResponse<T>
: Generic API response wrapper with data, error, and status fieldsApiConfig
: Configuration for API client with baseUrl and optional headersApiCredentials
: For API-based authentication with authId and authKeyPartnerCredentials
: For partner-based authentication with partnerKey and clientKey
These interfaces help ensure type safety when working with API data.
Available Prompts
ask-question
: A prompt template for asking questions
Testing with the Example Client
The repository includes an example client that demonstrates how to connect to the MCP server and use its resources, tools, and prompts.
To run the example client (with the server already running):
npm run client
This will:
- Connect to the MCP server
- List available resources, tools, and prompts
- Read the greeting resource
- Use the available tools
- Get the ask-question prompt
Usage with LLMs
This MCP server can be used with LLM clients that support the MCP protocol. Refer to the MCP documentation for information on how to connect LLM clients to this server.
License
MIT