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.
Trusted by
AWS
Glean
Zoom
Airtable

30 min · no commitment · see it on your stack

Sap successfactors Logo
Gradient Top
Gradient Middle
Gradient Bottom
divider

Try Sap successfactors now

Enter a prompt below to test the integration in our Tool Router playground. You'll be redirected to sign in and try it live.

Supported Tools

Tools
Approve Calibration SessionFinalize a calibration session that is in the In Progress or Approving status.
Create a Feedback RequestCreate a feedback request in SAP SuccessFactors Continuous Feedback.
Create Learning Activities BulkCreate learning activities and associate them with development goals in bulk (requires third-party LMS integration).
Create OnboardeeCreates a new onboardee in SAP SuccessFactors Onboarding 2.
Create or Update Successor NominationCreate or update a successor nomination for a position or talent pool in succession planning.
Delete NominationDelete a nomination for a position or talent pool in succession planning.
Get Application InterviewRetrieves interview information related to job applications from Interview Central.
Get Background EducationTool to retrieve background education records for employees from SAP SuccessFactors.
Get Background MobilityRetrieves mobility background records showing employee willingness to relocate.
Get Calibration Session By IDGet a specific calibration session by session ID.
Get Calibration SessionsQuery all the calibration sessions that a user can access.
Get Calibration Subject By IDQuery a specific subject's competency ratings and ratings within a calibration session.
Get Calibration Subject RatingsQuery a subject's ratings, competency ratings, and comments by using session ID.
Get CDP Learning MetadataGet metadata for Career Development Planning Learning service.
Get Current UserRetrieves the currently authenticated user's information from SAP SuccessFactors.
Get Custom MDF ObjectTool to retrieve custom MDF (Metadata Framework) objects from SAP SuccessFactors.
Get Employee Employment TerminationRetrieves employee termination information records from SAP SuccessFactors.
Get Employee TimeRetrieves employee time entries including time off records from SAP SuccessFactors.
Get Employee TimesheetRetrieves employee timesheet records for attendances, overtime, on-call times, and allowances.
Get Non-Recurring Pay ComponentsTool to retrieve non-recurring pay component information including bonuses and one-time payments from SAP SuccessFactors.
Get Recurring Pay ComponentsTool to retrieve recurring pay component information including salary and benefits data from SAP SuccessFactors.
Get Feedback RecordsTool to retrieve continuous feedback records from SAP SuccessFactors Performance and Goals module using OData V4 protocol.
Get FOBusinessUnitRetrieves foundation object business unit records for organizational structure hierarchy.
Get FOCompany RecordsRetrieves foundation object company records from SAP SuccessFactors.
Get Foundation Object Cost CentersRetrieves foundation object cost center records for organizational structure.
Get FODepartment RecordsTool to retrieve foundation object department records from SAP SuccessFactors.
Get Foundation Object Job CodesRetrieves foundation object job code records containing job classification information.
Get Job FunctionsTool to retrieve foundation object job function records for categorizing job roles.
Get Foundation Object LocationTool to retrieve foundation object location records for work locations.
Get FOPayGroupRetrieves foundation object pay group records for compensation and payroll groupings.
Get Form ContentRetrieves performance form content from SAP SuccessFactors.
Get Goal Plan TemplateRetrieves goal plan template information from SAP SuccessFactors.
Get Goals By PlanRetrieves performance goals data using the goal plan ID.
Get Interview Overall AssessmentTool to retrieve overall interview ratings and navigation for assessments from Interview Central.
Get Job ApplicationRetrieves job application records linking candidates to job requisitions.
Get Job Requisition Screening QuestionsTool to retrieve screening questions related to job requisitions from SAP SuccessFactors Recruiting.
Get Job RequisitionTool to retrieve job requisition records from SAP SuccessFactors Recruiting Management.
Get Calibration Session MetadataGet OData metadata for Calibration Session service.
Get Clock In/Out Integration MetadataGet OData metadata for Clock In/Clock Out Integration service.
Get Nomination Service MetadataGet OData metadata for Nomination service.
Get Onboarding Additional Services MetadataGet OData metadata for Onboarding Additional Services.
Get User Entity MetadataRetrieves the OData metadata document for the User entity describing its properties and operations.
Get Onboarding 2.0 ProcessesTool to retrieve Onboarding 2.
Get Pending Feedback RequestsTool to retrieve pending feedback requests or feedback request records from SAP SuccessFactors Continuous Feedback.
Get Personal Information RecordsTool to retrieve personal information records from SAP SuccessFactors Employee Central.
Get Person by IDTool to retrieve person information for an employee by their external person ID.
Get PicklistTool to retrieve picklist definitions from SAP SuccessFactors.
Get Picklist OptionRetrieves picklist option values with localized labels from SAP SuccessFactors.
Get PositionRetrieves position management records from SAP SuccessFactors Employee Central.
Get Talent PoolRetrieves talent pool records including members and nomination details.
Get Temporary Time InformationRetrieves temporary time information records from Time Management module.
Get Time Account SnapshotRetrieves time account snapshot data for leave liability calculation and payroll.
Get Work OrderTool to retrieve work order records for contingent worker management from SAP SuccessFactors.
Give Feedback or Respond to Feedback RequestTool to give performance feedback or respond to a feedback request in SAP SuccessFactors Continuous Performance Management.
List CandidatesTool to retrieve a list of candidates from SAP SuccessFactors.
List Employee Employment RecordsTool to retrieve a list of all employment records from SAP SuccessFactors.
List Person RecordsTool to retrieve a list of person records from SAP SuccessFactors Employee Central.
List UsersTool to retrieve a list of all employee users from SAP SuccessFactors.
Query All Available Clock In/Clock Out GroupsQuery all available clock in/clock out groups.
Query Clock In/Clock Out Group By CodeQuery a clock in/clock out group by code with time event types.
Refresh CDP Learning MetadataRefresh metadata for Career Development Planning Learning service.
Refresh Metadata for Continuous FeedbackRefresh metadata cache for Continuous Feedback service.
Update Calibration Subject RatingsUpdate a subject's competency ratings in a calibration session.
Update Username Post HiringUpdate the internal username of new hires after hiring process is completed from Active Directory.
Python
TypeScript

Install Composio

python
pip install composio claude-agent-sdk
Install the Composio SDK and Claude Agent SDK

Create Tool Router Session

python
from composio import Composio
from claude_agent_sdk import ClaudeSDKClient, ClaudeAgentOptions

composio = Composio(api_key='your-composio-api-key')
session = composio.create(user_id='your-user-id')
url = session.mcp.url
Initialize the Composio client and create a Tool Router session

Connect to AI Agent

python
import asyncio

options = ClaudeAgentOptions(
    permission_mode='bypassPermissions',
    mcp_servers={
        'tool_router': {
            'type': 'http',
            'url': url,
            'headers': {
                'x-api-key': 'your-composio-api-key'
            }
        }
    },
    system_prompt='You are a helpful assistant with access to Sap successfactors tools.',
    max_turns=10
)

async def main():
    async with ClaudeSDKClient(options=options) as client:
        await client.query('Get my current employee profile from SAP SuccessFactors')
        async for message in client.receive_response():
            if hasattr(message, 'content'):
                for block in message.content:
                    if hasattr(block, 'text'):
                        print(block.text)

asyncio.run(main())
Use the MCP server with your AI 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

Frequently Asked Questions

Do I need my own developer credentials to use Sap successfactors with Composio?

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

Can I use multiple toolkits together?

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

Is Composio secure?

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

What if the API changes?

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

Used by agents from

Context
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai

Never worry about agent reliability

We handle tool reliability, observability, and security so you never have to second-guess an agent action.