Sap successfactors MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Sap successfactors MCP or direct API to manage employee records, automate onboarding, update performance goals, and trigger HR workflows through natural language.

Sap successfactors logoSap successfactors
Saml

Sap successfactors is a cloud-based human capital management suite for HR, payroll, recruiting, and talent management. It helps organizations centralize employee data and streamline the entire employee lifecycle.

64 Tools

Try Sap successfactors now

Type what you want done — sign in and watch it run live in the Tool Router playground.

TOOL ROUTER PLAYGROUND
Sap successfactors
Try asking
TOOLS

Supported Tools

Every Sap successfactors action and event your agent gets out of the box.

Approve Calibration Session

Finalize a calibration session that is in the In Progress or Approving status.

Create a Feedback Request

Create a feedback request in SAP SuccessFactors Continuous Feedback.

Create Learning Activities Bulk

Create learning activities and associate them with development goals in bulk (requires third-party LMS integration).

Create Onboardee

Creates a new onboardee in SAP SuccessFactors Onboarding 2.

Create or Update Successor Nomination

Create or update a successor nomination for a position or talent pool in succession planning.

Delete Nomination

Delete a nomination for a position or talent pool in succession planning.

Get Application Interview

Retrieves interview information related to job applications from Interview Central.

Get Background Education

Tool to retrieve background education records for employees from SAP SuccessFactors.

Get Background Mobility

Retrieves mobility background records showing employee willingness to relocate.

Get Calibration Session By ID

Get a specific calibration session by session ID.

Get Calibration Sessions

Query all the calibration sessions that a user can access.

Get Calibration Subject By ID

Query a specific subject's competency ratings and ratings within a calibration session.

Get Calibration Subject Ratings

Query a subject's ratings, competency ratings, and comments by using session ID.

Get CDP Learning Metadata

Get metadata for Career Development Planning Learning service.

Get Current User

Retrieves the currently authenticated user's information from SAP SuccessFactors.

Get Custom MDF Object

Tool to retrieve custom MDF (Metadata Framework) objects from SAP SuccessFactors.

Get Employee Employment Termination

Retrieves employee termination information records from SAP SuccessFactors.

Get Employee Time

Retrieves employee time entries including time off records from SAP SuccessFactors.

Get Employee Timesheet

Retrieves employee timesheet records for attendances, overtime, on-call times, and allowances.

Get Non-Recurring Pay Components

Tool to retrieve non-recurring pay component information including bonuses and one-time payments from SAP SuccessFactors.

Get Recurring Pay Components

Tool to retrieve recurring pay component information including salary and benefits data from SAP SuccessFactors.

Get Feedback Records

Tool to retrieve continuous feedback records from SAP SuccessFactors Performance and Goals module using OData V4 protocol.

Get FOBusinessUnit

Retrieves foundation object business unit records for organizational structure hierarchy.

Get FOCompany Records

Retrieves foundation object company records from SAP SuccessFactors.

Get Foundation Object Cost Centers

Retrieves foundation object cost center records for organizational structure.

Get FODepartment Records

Tool to retrieve foundation object department records from SAP SuccessFactors.

Get Foundation Object Job Codes

Retrieves foundation object job code records containing job classification information.

Get Job Functions

Tool to retrieve foundation object job function records for categorizing job roles.

Get Foundation Object Location

Tool to retrieve foundation object location records for work locations.

Get FOPayGroup

Retrieves foundation object pay group records for compensation and payroll groupings.

Get Form Content

Retrieves performance form content from SAP SuccessFactors.

Get Goal Plan Template

Retrieves goal plan template information from SAP SuccessFactors.

Get Goals By Plan

Retrieves performance goals data using the goal plan ID.

Get Interview Overall Assessment

Tool to retrieve overall interview ratings and navigation for assessments from Interview Central.

Get Job Application

Retrieves job application records linking candidates to job requisitions.

Get Job Requisition Screening Questions

Tool to retrieve screening questions related to job requisitions from SAP SuccessFactors Recruiting.

Get Job Requisition

Tool to retrieve job requisition records from SAP SuccessFactors Recruiting Management.

Get Calibration Session Metadata

Get OData metadata for Calibration Session service.

Get Clock In/Out Integration Metadata

Get OData metadata for Clock In/Clock Out Integration service.

Get Nomination Service Metadata

Get OData metadata for Nomination service.

Get Onboarding Additional Services Metadata

Get OData metadata for Onboarding Additional Services.

Get User Entity Metadata

Retrieves the OData metadata document for the User entity describing its properties and operations.

Get Onboarding 2.0 Processes

Tool to retrieve Onboarding 2.

Get Pending Feedback Requests

Tool to retrieve pending feedback requests or feedback request records from SAP SuccessFactors Continuous Feedback.

Get Personal Information Records

Tool to retrieve personal information records from SAP SuccessFactors Employee Central.

Get Person by ID

Tool to retrieve person information for an employee by their external person ID.

Get Picklist

Tool to retrieve picklist definitions from SAP SuccessFactors.

Get Picklist Option

Retrieves picklist option values with localized labels from SAP SuccessFactors.

Get Position

Retrieves position management records from SAP SuccessFactors Employee Central.

Get Talent Pool

Retrieves talent pool records including members and nomination details.

Get Temporary Time Information

Retrieves temporary time information records from Time Management module.

Get Time Account Snapshot

Retrieves time account snapshot data for leave liability calculation and payroll.

Get Work Order

Tool to retrieve work order records for contingent worker management from SAP SuccessFactors.

Give Feedback or Respond to Feedback Request

Tool to give performance feedback or respond to a feedback request in SAP SuccessFactors Continuous Performance Management.

List Candidates

Tool to retrieve a list of candidates from SAP SuccessFactors.

List Employee Employment Records

Tool to retrieve a list of all employment records from SAP SuccessFactors.

List Person Records

Tool to retrieve a list of person records from SAP SuccessFactors Employee Central.

List Users

Tool to retrieve a list of all employee users from SAP SuccessFactors.

Query All Available Clock In/Clock Out Groups

Query all available clock in/clock out groups.

Query Clock In/Clock Out Group By Code

Query a clock in/clock out group by code with time event types.

Refresh CDP Learning Metadata

Refresh metadata for Career Development Planning Learning service.

Refresh Metadata for Continuous Feedback

Refresh metadata cache for Continuous Feedback service.

Update Calibration Subject Ratings

Update a subject's competency ratings in a calibration session.

Update Username Post Hiring

Update the internal username of new hires after hiring process is completed from Active Directory.

SETUP GUIDE

Connect Sap successfactors MCP Tool with your Agent

1

Install Composio

typescript
npm install @composio/core ai @ai-sdk/openai @ai-sdk/mcp
Install the Composio SDK and Claude Agent SDK
2

Create Tool Router Session

typescript
import { Composio } from '@composio/core';

const composio = new Composio({ apiKey: 'your-api-key' });

console.log("Creating Tool Router session...");
const { mcp } = await composio.create('your-user-id');
console.log(`Tool Router session created: ${mcp.url}`);
Initialize the Composio client and create a Tool Router session
3

Connect to AI Agent

typescript
import { openai } from '@ai-sdk/openai';
import { experimental_createMCPClient as createMCPClient } from '@ai-sdk/mcp';
import { generateText, stepCountIs } from 'ai';

const client = await createMCPClient({
  transport: {
    type: 'http',
    url: mcp.url,
    headers: { 'x-api-key': 'your-composio-api-key' }
  }
});

const tools = await client.tools();

const { text } = await generateText({
  model: openai('gpt-4o'),
  tools,
  messages: [{ role: 'user', content: 'Get my current employee profile from SAP SuccessFactors' }],
  stopWhen: stepCountIs( 5 )
});

console.log(`Agent: ${text}`);
Use the MCP server with your AI agent
SETUP GUIDE

Connect Sap successfactors API Tool with your Agent

1

Install Composio

typescript
npm install @composio/openai
Install the Composio SDK
2

Initialize Composio and Create Tool Router Session

typescript
import OpenAI from 'openai';
import { Composio } from '@composio/core';
import { OpenAIResponsesProvider } from '@composio/openai';

const composio = new Composio({
  provider: new OpenAIResponsesProvider(),
});
const openai = new OpenAI({});
const session = await composio.create('your-user-id');
Import and initialize Composio client, then create a Tool Router session
3

Execute Sap successfactors Tools via Tool Router with Your Agent

typescript
const tools = session.tools;
const response = await openai.responses.create({
  model: 'gpt-4.1',
  tools: tools,
  input: [{
    role: 'user',
    content: 'Retrieve my current employee profile from SAP SuccessFactors.'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
Get tools from Tool Router session and execute Sap successfactors actions with your Agent

Why Use Composio?

AI Native Sap successfactors Integration

  • Supports both Sap successfactors MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable tool execution
  • Rich coverage for reading, writing, and querying your Sap successfactors data

Managed Auth

  • Built-in OAuth handling with automatic token refresh and rotation
  • Central place to manage, scope, and revoke Sap successfactors access
  • Per user and per environment credentials instead of hard-coded keys

Agent Optimized Design

  • Tools are tuned using real error and success rates to improve reliability over time
  • Comprehensive execution logs so you always know what ran, when, and on whose behalf

Enterprise Grade Security

  • Fine-grained RBAC so you control which agents and users can access Sap successfactors
  • Scoped, least privilege access to Sap successfactors resources
  • Full audit trail of agent actions to support review and compliance
FAQ

Frequently asked questions

Yes, Sap successfactors requires you to configure your own SAML credentials. Once set up, Composio handles secure credential storage and management for you.

Yes! Composio's Tool Router enables agents to use multiple toolkits. Learn more.

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. Learn more.

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

Start with Sap successfactors.It takes 30 seconds.

Managed auth, hosted MCP servers, and every Sap successfactors tool your agent needs.Free to start.

Start building