Connect your AI Agents to SAP SuccessFactors in minutes

Available tools
get_employee_compensation
Retrieve compensation records for an employee from SAP SuccessFactors Employee Central Compensation. Returns detailed compensation information including salary, pay grade, pay group, pay frequency, pay components, and effective dates. Essential for compensation analysis, salary verification, pay equity audits, and employee compensation inquiries.
list_employee_compensation
Retrieve a paginated list of all employee compensation records from SAP SuccessFactors Employee Central Compensation. Returns compensation information for multiple employees including salaries, pay grades, pay groups, and effective dates. Useful for bulk compensation reporting, salary benchmarking, pay equity analysis, and organizational compensation planning.
get_goal
Retrieve detailed performance goal information from SAP SuccessFactors Performance & Goals by goal ID. Returns goal data including objectives, metrics, targets, current progress, and completion status. Essential for performance management, goal tracking, and employee development discussions.
list_goals
Retrieve a paginated list of performance goals from SAP SuccessFactors Performance & Goals with OData filtering. Returns goals by user, status, category, or date range. Essential for performance reporting, goal management, employee reviews, and organizational objective tracking. Note: Goal entity name varies by instance configuration (Goal_1, Goal_2, Goal_9). If you encounter 'Entity not found' errors, check Admin Center > OData API Data Dictionary for your specific Goal entity name.
create_goal
Create a new performance goal in SAP SuccessFactors Performance & Goals. Requires goal name and owner user ID with optional description, category, dates, metrics, and target values. Essential for establishing performance objectives, development plans, and organizational goals.
update_goal
Update performance goal information in SAP SuccessFactors Performance & Goals. Modifies goal details, progress metrics, actual values, and completion percentages. Essential for tracking goal progress, updating targets, and facilitating performance discussions.
delete_goal
Delete a performance goal from SAP SuccessFactors Performance & Goals. Permanently removes the goal record from the system. Use with caution as deletion is irreversible. Consider updating status to cancelled instead to maintain performance history and audit trails.
get_payment_information
Retrieve payment and bank account information for an employee from SAP SuccessFactors. Returns comprehensive banking details including account holder, account type, bank name, account number, routing number, IBAN, SWIFT code, and primary account indicator. Essential for payroll processing, direct deposit setup, and financial data management.
list_payment_information
Retrieve a paginated list of all payment and bank account records from SAP SuccessFactors. Returns banking details for multiple employees including account information, routing numbers, and IBAN/SWIFT codes. Useful for bulk payroll operations, banking audits, and financial reporting.
get_payroll_results
Retrieve payroll run results for an employee from SAP SuccessFactors Payroll. Returns detailed payroll information including pay period dates, payment date, gross pay, net pay, and currency. Essential for payroll verification, employee pay stub access, compensation analysis, and payroll reporting.
list_payroll_results
Retrieve a paginated list of all payroll run results from SAP SuccessFactors Payroll. Returns payroll information for multiple employees including pay periods, payment dates, gross/net pay amounts, and currency. Useful for bulk payroll reporting, financial analysis, and payroll auditing.
get_person
Retrieve core personal information for an employee from SAP SuccessFactors by person ID. Returns comprehensive personal data including name, date of birth, gender, marital status, nationality, and preferred language. Essential for HR data management, compliance reporting, and employee profile access.

How to set up Merge Agent Handler
In an mcp.json file, add the configuration below, and restart Cursor.
Learn more in the official documentation ↗
1{
2 "mcpServers": {
3 "agent-handler": {
4 "url": "https://ah-api-develop.merge.dev/api/v1/tool-packs/{TOOL_PACK_ID}/registered-users/{REGISTERED_USER_ID}/mcp",
5 "headers": {
6 "Authorization": "Bearer yMt*****"
7 }
8 }
9 }
10}
11Open your Claude Desktop configuration file and add the server configuration below. You'll also need to restart the application for the changes to take effect.
Make sure Claude is using the Node v20+.
Learn more in the official documentation ↗
1{
2 "mcpServers": {
3 "agent-handler": {
4 "command": "npx",
5 "args": [
6 "-y",
7 "mcp-remote@latest",
8 "https://ah-api-develop.merge.dev/api/v1/tool-packs/{TOOL_PACK_ID}/registered-users/{REGISTERED_USER_ID}/mcp",
9 "--header",
10 "Authorization: Bearer ${AUTH_TOKEN}"
11 ],
12 "env": {
13 "AUTH_TOKEN": "yMt*****"
14 }
15 }
16 }
17}Open your Windsurf MCP configuration file and add the server configuration below.
Click on the refresh button in the top right of the Manage MCP server page or in the top right of the chat box in the box icon.
Learn more in the official documentation ↗
1{
2 "mcpServers": {
3 "agent-handler": {
4 "command": "npx",
5 "args": [
6 "-y",
7 "mcp-remote@latest",
8 "https://ah-api.merge.dev/api/v1/tool-packs/<tool-pack-id>/registered-users/<registered-user-id>/mcp",
9 "--header",
10 "Authorization: Bearer ${AUTH_TOKEN}"
11 ],
12 "env": {
13 "AUTH_TOKEN": "<ah-production-access-key>"
14 }
15 }
16 }
17 }In Command Palette (Cmd+Shift+P on macOS, Ctrl+Shift+P on Windows), run "MCP: Open User Configuration".
You can then add the configuration below and press "start" right under servers. Enter the auth token when prompted.
Learn more in the official documentation ↗
1{
2 "inputs": [
3 {
4 "type": "promptString",
5 "id": "agent-handler-auth",
6 "description": "Agent Handler AUTH_TOKEN", // "yMt*****" when prompt
7 "password": true
8 }
9 ],
10 "servers": {
11 "agent-handler": {
12 "type": "stdio",
13 "command": "npx",
14 "args": [
15 "-y",
16 "mcp-remote@latest",
17 "https://ah-api-develop.merge.dev/api/v1/tool-packs/{TOOL_PACK_ID}/registered-users/{REGISTERED_USER_ID}/mcp",
18 "--header",
19 "Authorization: Bearer ${input:agent-handler-auth}"
20 ]
21 }
22 }
23}FAQs on using Merge's SAP SuccessFactors MCP server
FAQs on using Merge's SAP SuccessFactors MCP server
Explore other MCP servers built and managed by Merge








Ready to try it out?
Whether you're an engineer experimenting with agents or a product manager looking to add tools, you can get started for free now
