# How to integrate Salesforce service cloud MCP with OpenAI Agents SDK

```json
{
  "title": "How to integrate Salesforce service cloud MCP with OpenAI Agents SDK",
  "toolkit": "Salesforce service cloud",
  "toolkit_slug": "salesforce_service_cloud",
  "framework": "OpenAI Agents SDK",
  "framework_slug": "open-ai-agents-sdk",
  "url": "https://composio.dev/toolkits/salesforce_service_cloud/framework/open-ai-agents-sdk",
  "markdown_url": "https://composio.dev/toolkits/salesforce_service_cloud/framework/open-ai-agents-sdk.md",
  "updated_at": "2026-05-12T10:24:36.668Z"
}
```

## Introduction

This guide walks you through connecting Salesforce service cloud to the OpenAI Agents SDK using the Composio tool router. By the end, you'll have a working Salesforce service cloud agent that can list all open support cases for today, update case status to resolved for customer, fetch recent customer interactions for an account through natural language commands.
This guide will help you understand how to give your OpenAI Agents SDK agent real control over a Salesforce service cloud account through Composio's Salesforce service cloud MCP server.
Before we dive in, let's take a quick look at the key ideas and tools involved.

## Also integrate Salesforce service cloud with

- [ChatGPT](https://composio.dev/toolkits/salesforce_service_cloud/framework/chatgpt)
- [Claude Agent SDK](https://composio.dev/toolkits/salesforce_service_cloud/framework/claude-agents-sdk)
- [Claude Code](https://composio.dev/toolkits/salesforce_service_cloud/framework/claude-code)
- [Claude Cowork](https://composio.dev/toolkits/salesforce_service_cloud/framework/claude-cowork)
- [Codex](https://composio.dev/toolkits/salesforce_service_cloud/framework/codex)
- [Cursor](https://composio.dev/toolkits/salesforce_service_cloud/framework/cursor)
- [VS Code](https://composio.dev/toolkits/salesforce_service_cloud/framework/vscode)
- [OpenCode](https://composio.dev/toolkits/salesforce_service_cloud/framework/opencode)
- [OpenClaw](https://composio.dev/toolkits/salesforce_service_cloud/framework/openclaw)
- [Hermes](https://composio.dev/toolkits/salesforce_service_cloud/framework/hermes-agent)
- [CLI](https://composio.dev/toolkits/salesforce_service_cloud/framework/cli)
- [Google ADK](https://composio.dev/toolkits/salesforce_service_cloud/framework/google-adk)
- [LangChain](https://composio.dev/toolkits/salesforce_service_cloud/framework/langchain)
- [Vercel AI SDK](https://composio.dev/toolkits/salesforce_service_cloud/framework/ai-sdk)
- [Mastra AI](https://composio.dev/toolkits/salesforce_service_cloud/framework/mastra-ai)
- [LlamaIndex](https://composio.dev/toolkits/salesforce_service_cloud/framework/llama-index)
- [CrewAI](https://composio.dev/toolkits/salesforce_service_cloud/framework/crew-ai)

## TL;DR

Here's what you'll learn:
- Get and set up your OpenAI and Composio API keys
- Install the necessary dependencies
- Initialize Composio and create a Tool Router session for Salesforce service cloud
- Configure an AI agent that can use Salesforce service cloud as a tool
- Run a live chat session where you can ask the agent to perform Salesforce service cloud operations

## What is OpenAI Agents SDK?

The OpenAI Agents SDK is a lightweight framework for building AI agents that can use tools and maintain conversation state. It provides a simple interface for creating agents with hosted MCP tool support.
Key features include:
- Hosted MCP Tools: Connect to external services through hosted MCP endpoints
- SQLite Sessions: Persist conversation history across interactions
- Simple API: Clean interface with Agent, Runner, and tool configuration
- Streaming Support: Real-time response streaming for interactive applications

## What is the Salesforce service cloud MCP server, and what's possible with it?

The Salesforce service cloud MCP server is an implementation of the Model Context Protocol that connects your AI agent and assistants like Claude, Cursor, etc directly to your Salesforce Service Cloud account. It provides structured and secure access to your customer service data, so your agent can perform actions like managing cases, retrieving knowledge articles, automating service processes, and tracking customer interactions on your behalf.
- Case management and triage: Empower your agent to create, update, assign, or close customer service cases, ensuring timely resolution of inquiries and incidents.
- Knowledge base retrieval: Let your agent search, read, and recommend relevant knowledge articles to assist with customer support and internal troubleshooting.
- Customer interaction tracking: Have your agent log new interactions, fetch historical communication, and surface recent touchpoints for a full view of customer engagement.
- Omnichannel support automation: Enable your agent to route cases, escalate issues, and manage service requests across chat, email, phone, and social channels all from one place.
- Service workflow automation: Direct your agent to trigger macros, update case statuses, or launch automated actions to streamline repetitive tasks and boost support team productivity.

## Supported Tools

| Tool slug | Name | Description |
|---|---|---|
| `SALESFORCE_SERVICE_CLOUD_CHASITOR_SNEAK_PEEK` | Chasitor Sneak Peek | Send real-time typing indicator (sneak peek) to Live Agent during active chat session. Allows agents to see what visitors are typing before the message is sent. Requires an active Live Agent chat session with valid session_key and affinity token. The sequence number must increment with each request. |
| `SALESFORCE_SERVICE_CLOUD_COMPOSITE_BATCH` | Composite Batch | Tool to execute multiple independent REST subrequests in one batch call. Use when bundling up to 25 independent operations to minimize round trips. Subrequests cannot reference each other. |
| `SALESFORCE_SERVICE_CLOUD_COMPOSITE_REQUEST` | Composite Request | Execute up to 25 dependent Salesforce REST subrequests in a single API call. Subrequests execute sequentially and can reference results from earlier requests using '@{referenceId.field}' syntax. Use this when operations depend on each other (e.g., create Account then create related Contact). For independent operations, use Composite Batch instead. |
| `SALESFORCE_SERVICE_CLOUD_COMPOSITE_SOBJECT_TREE` | Composite SObject Tree | Create one or more nested sObject record trees in a single API call. Supports parent-child relationships up to 5 levels deep, with a maximum of 200 total records across all trees. Use this for bulk insertion of related records (e.g., Account with Contacts, or Orders with Line Items). Relationships must be Master-Detail or Lookup. Only supports INSERT operations, not upserts. |
| `SALESFORCE_SERVICE_CLOUD_CREATE_CASE_RECORD` | Create Case Record | Tool to create or upsert a Salesforce Case record. Use when you need to add a new Case or update via external ID. |
| `SALESFORCE_SERVICE_CLOUD_DELETE_CASE_RECORD` | Delete Case Record | Tool to delete a Salesforce Case record. Use when you need to remove a case by its record ID. |
| `SALESFORCE_SERVICE_CLOUD_DESCRIBE_S_OBJECT` | Describe SObject | Tool to retrieve metadata of any sObject. Use when you need to inspect field definitions, relationships, and supported features for objects like Account, Contact, Case, etc. |
| `SALESFORCE_SERVICE_CLOUD_GENERATE_REQUEST_ID` | Generate Request ID | Generate a UUIDv4 string to use as an Idempotency-Key header in Salesforce User Interface API requests. This prevents duplicate record creation when POST, PATCH, or DELETE requests are retried due to network failures or timeouts. The same key returns cached responses for 30 days, avoiding duplicate operations and saving server resources. Use this tool whenever you need to ensure idempotent behavior for Salesforce UI API operations. |
| `SALESFORCE_SERVICE_CLOUD_GENERATE_SIGNED_JWT_ASSERTION` | Generate Signed JWT Assertion | Tool to generate a signed JWT assertion for Salesforce JWT bearer OAuth flow. Use when you need to perform server-to-server authentication using a connected app’s certificate. Use before exchanging the assertion for an access token. |
| `SALESFORCE_SERVICE_CLOUD_GET_CASE_RECORD` | Get Case Record | Retrieve a Salesforce Case record by its ID. Returns Case details including status, priority, subject, description, owner, and timestamps. Useful for: - Looking up Case details by ID - Checking Case status and priority - Getting customer issue information - Retrieving Case metadata and relationships Requires a valid 15 or 18-character Salesforce Case ID. Optionally specify which fields to retrieve using the fields parameter; otherwise all accessible fields are returned. |
| `SALESFORCE_SERVICE_CLOUD_GET_CHAT_MESSAGES` | Get Chat Messages | Tool to long-poll for chat messages/events. Use after CreateChatSession to retrieve incoming chat events. Returns empty messages list when no new messages (HTTP 204). Call with ack from prior response to maintain sequence. |
| `SALESFORCE_SERVICE_CLOUD_GET_LIVE_AGENT_API_VERSION` | Get Live Agent API Version | Tool to retrieve current Live Agent API version. Use when initializing chat sessions to ensure subsequent calls target the correct REST API version. |
| `SALESFORCE_SERVICE_CLOUD_LIST_EINSTEIN_BOTS` | List Einstein Bots | Lists all Einstein Bot definitions in the Salesforce organization. This action queries the BotDefinition object using the Salesforce Tooling API to retrieve metadata about all Einstein Bots, including their IDs, labels, developer names, and language settings. Use this action when you need to: - Get a list of available Einstein Bots in the org - Find valid bot IDs for use with other Einstein Bots API operations - Retrieve bot metadata such as names and language settings Returns an empty list if no bots exist or if Tooling API access is unavailable. |
| `SALESFORCE_SERVICE_CLOUD_QUERY_ALL_SOQL` | Query All SOQL | Tool to execute a SOQL query including deleted and archived records. Use when you need to fetch all rows including soft-deleted data in Salesforce. |
| `SALESFORCE_SERVICE_CLOUD_QUERY_SOQL` | Query SOQL | Tool to execute a SOQL query. Use when you need to retrieve records from Salesforce via SOQL. |
| `SALESFORCE_SERVICE_CLOUD_RECONNECT_CHAT_SESSION` | Reconnect Chat Session | Tool to reconnect a Live Agent chat session after the affinity token changes. Use this when you receive a 503 (Service Unavailable) response during chat operations, indicating the affinity token has changed and the session needs to be reestablished on a new server. After reconnecting, you must call ResyncChasitorState to restore the visitor's chat context. Note: Requires valid session_key and affinity tokens from an active Live Agent chat session. |
| `SALESFORCE_SERVICE_CLOUD_RESYNC_CHASITOR_STATE` | Resync Chasitor State | Resynchronizes the chat visitor's state after a session reconnection. This action is part of the Salesforce Live Agent chat session recovery workflow: 1. First, call ReconnectChatSession with the session_key and affinity_token 2. Then, call this action to restore the visitor's chat state 3. Finally, resume normal chat operations (sending messages, getting messages, etc.) Prerequisites: - An active or recently disconnected Live Agent chat session - Valid session_key and affinity_token from the original session - Live Agent must be properly configured in the Salesforce org Note: The legacy Live Agent product is being phased out in favor of Messaging for In-App and Web. This action sends a POST request to /chat/rest/Chasitor/ChasitorResyncState with required Live Agent headers but no request body. |
| `SALESFORCE_SERVICE_CLOUD_RETRIEVE_CONNECTED_APP_PRIVATE_KEY` | Retrieve Connected App Private Key | Tool to retrieve RSA private key PEM for a Salesforce Connected App. Use when signing JWT assertions for OAuth flows. Provide the app's Connected App ID and optional secret name or file path. Use before generating signed JWTs. |
| `SALESFORCE_SERVICE_CLOUD_RETRIEVE_SALESFORCE_USERNAME` | Retrieve Salesforce Username | Tool to retrieve the Salesforce username. Use when you need the current authenticated user's username. Use after completing OAuth2 authentication. |
| `SALESFORCE_SERVICE_CLOUD_SEND_CUSTOM_EVENT` | Send Custom Event | Send a custom event from a chat visitor to a Live Agent during an active chat session. Use this tool to trigger custom event handlers on the agent's side, enabling custom interactions beyond standard chat messages. Custom events can be used for actions like form submissions, button clicks, page navigation, or any application-specific events that need to be communicated to the agent. Prerequisites: - An active Live Agent chat session must be established - Live Agent REST API must be configured and enabled in your Salesforce org - Valid session_key and affinity_token from session initialization Note: This endpoint requires Live Agent to be properly configured. The API typically returns 204 No Content on success. |
| `SALESFORCE_SERVICE_CLOUD_SET_BREADCRUMB` | Set Breadcrumb | Tool to set a breadcrumb URL for the visitor's current page. Use after a visitor navigates to a new page during an active chat session. |
| `SALESFORCE_SERVICE_CLOUD_UPLOAD_FILE_TO_S3` | Upload File to S3 | Tool to upload a file to managed S3 storage. Use when you need to persist files externally. |
| `SALESFORCE_SERVICE_CLOUD_VISITOR_SENSITIVE_DATA_RULE` | Visitor Sensitive Data Rule Triggered | Tool to trigger sensitive data rules for the chat visitor. Use after detecting sensitive content to apply visitor masking or handling rules. |

## Supported Triggers

None listed.

## Creating MCP Server - Stand-alone vs Composio SDK

The Salesforce service cloud MCP server is an implementation of the Model Context Protocol that connects your AI agent to Salesforce service cloud. It provides structured and secure access so your agent can perform Salesforce service cloud operations on your behalf through a secure, permission-based interface.
With Composio's managed implementation, you don't have to create your own developer app. For production, if you're building an end product, we recommend using your own credentials. The managed server helps you prototype fast and go from 0-1 faster.

## Step-by-step Guide

### 1. Prerequisites

Before starting, make sure you have:
- Composio API Key and OpenAI API Key
- Primary know-how of OpenAI Agents SDK
- A live Salesforce service cloud project
- Some knowledge of Python or Typescript

### 1. Getting API Keys for OpenAI and Composio

OpenAI API Key
- Go to the [OpenAI dashboard](https://platform.openai.com/settings/organization/api-keys) and create an API key. You'll need credits to use the models, or you can connect to another model provider.
- Keep the API key safe.
Composio API Key
- Log in to the [Composio dashboard](https://dashboard.composio.dev?utm_source=toolkits&utm_medium=framework_docs).
- Go to Settings and copy your API key.

### 2. Install dependencies

Install the Composio SDK and the OpenAI Agents SDK.
```python
pip install composio_openai_agents openai-agents python-dotenv
```

```typescript
npm install @composio/openai-agents @openai/agents dotenv
```

### 3. Set up environment variables

Create a .env file and add your OpenAI and Composio API keys.
```bash
OPENAI_API_KEY=sk-...your-api-key
COMPOSIO_API_KEY=your-api-key
USER_ID=composio_user@gmail.com
```

### 4. Import dependencies

What's happening:
- You're importing all necessary libraries.
- The Composio and OpenAIAgentsProvider classes are imported to connect your OpenAI agent to Composio tools like Salesforce service cloud.
```python
import asyncio
import os
from dotenv import load_dotenv

from composio import Composio
from composio_openai_agents import OpenAIAgentsProvider
from agents import Agent, Runner, HostedMCPTool, SQLiteSession
```

```typescript
import 'dotenv/config';
import { Composio } from '@composio/core';
import { OpenAIAgentsProvider } from '@composio/openai-agents';
import { Agent, hostedMcpTool, run, OpenAIConversationsSession } from '@openai/agents';
import * as readline from 'readline';
```

### 5. Set up the Composio instance

No description provided.
```python
load_dotenv()

api_key = os.getenv("COMPOSIO_API_KEY")
user_id = os.getenv("USER_ID")

if not api_key:
    raise RuntimeError("COMPOSIO_API_KEY is not set. Create a .env file with COMPOSIO_API_KEY=your_key")

# Initialize Composio
composio = Composio(api_key=api_key, provider=OpenAIAgentsProvider())
```

```typescript
dotenv.config();

const composioApiKey = process.env.COMPOSIO_API_KEY;
const userId = process.env.USER_ID;

if (!composioApiKey) {
  throw new Error('COMPOSIO_API_KEY is not set. Create a .env file with COMPOSIO_API_KEY=your_key');
}
if (!userId) {
  throw new Error('USER_ID is not set');
}

// Initialize Composio
const composio = new Composio({
  apiKey: composioApiKey,
  provider: new OpenAIAgentsProvider(),
});
```

### 6. Create a Tool Router session

What is happening:
- You give the Tool Router the user id and the toolkits you want available. Here, it is only salesforce_service_cloud.
- The router checks the user's Salesforce service cloud connection and prepares the MCP endpoint.
- The returned session.mcp.url is the MCP URL that your agent will use to access Salesforce service cloud.
- This approach keeps things lightweight and lets the agent request Salesforce service cloud tools only when needed during the conversation.
```python
# Create a Salesforce service cloud Tool Router session
session = composio.create(
    user_id=user_id,
    toolkits=["salesforce_service_cloud"]
)

mcp_url = session.mcp.url
```

```typescript
// Create Tool Router session for Salesforce service cloud
const session = await composio.create(userId as string, {
  toolkits: ['salesforce_service_cloud'],
});
const mcpUrl = session.mcp.url;
```

### 7. Configure the agent

No description provided.
```python
# Configure agent with MCP tool
agent = Agent(
    name="Assistant",
    model="gpt-5",
    instructions=(
        "You are a helpful assistant that can access Salesforce service cloud. "
        "Help users perform Salesforce service cloud operations through natural language."
    ),
    tools=[
        HostedMCPTool(
            tool_config={
                "type": "mcp",
                "server_label": "tool_router",
                "server_url": mcp_url,
                "headers": {"x-api-key": api_key},
                "require_approval": "never",
            }
        )
    ],
)
```

```typescript
// Configure agent with MCP tool
const agent = new Agent({
  name: 'Assistant',
  model: 'gpt-5',
  instructions:
    'You are a helpful assistant that can access Salesforce service cloud. Help users perform Salesforce service cloud operations through natural language.',
  tools: [
    hostedMcpTool({
      serverLabel: 'tool_router',
      serverUrl: mcpUrl,
      headers: { 'x-api-key': composioApiKey },
      requireApproval: 'never',
    }),
  ],
});
```

### 8. Start chat loop and handle conversation

No description provided.
```python
print("\nComposio Tool Router session created.")

chat_session = SQLiteSession("conversation_openai_toolrouter")

print("\nChat started. Type your requests below.")
print("Commands: 'exit', 'quit', or 'q' to end\n")

async def main():
    try:
        result = await Runner.run(
            agent,
            "What can you help me with?",
            session=chat_session
        )
        print(f"Assistant: {result.final_output}\n")
    except Exception as e:
        print(f"Error: {e}\n")

    while True:
        user_input = input("You: ").strip()
        if user_input.lower() in {"exit", "quit", "q"}:
            print("Goodbye!")
            break

        result = await Runner.run(
            agent,
            user_input,
            session=chat_session
        )
        print(f"Assistant: {result.final_output}\n")

asyncio.run(main())
```

```typescript
// Keep conversation state across turns
const conversationSession = new OpenAIConversationsSession();

// Simple CLI
const rl = readline.createInterface({
  input: process.stdin,
  output: process.stdout,
  prompt: 'You: ',
});

console.log('\nComposio Tool Router session created.');
console.log('\nChat started. Type your requests below.');
console.log("Commands: 'exit', 'quit', or 'q' to end\n");

try {
  const first = await run(agent, 'What can you help me with?', { session: conversationSession });
  console.log(`Assistant: ${first.finalOutput}\n`);
} catch (e) {
  console.error('Error:', e instanceof Error ? e.message : e, '\n');
}

rl.prompt();

rl.on('line', async (userInput) => {
  const text = userInput.trim();

  if (['exit', 'quit', 'q'].includes(text.toLowerCase())) {
    console.log('Goodbye!');
    rl.close();
    process.exit(0);
  }

  if (!text) {
    rl.prompt();
    return;
  }

  try {
    const result = await run(agent, text, { session: conversationSession });
    console.log(`\nAssistant: ${result.finalOutput}\n`);
  } catch (e) {
    console.error('Error:', e instanceof Error ? e.message : e, '\n');
  }

  rl.prompt();
});

rl.on('close', () => {
  console.log('\n👋 Session ended.');
  process.exit(0);
});
```

## Complete Code

```python
import asyncio
import os
from dotenv import load_dotenv

from composio import Composio
from composio_openai_agents import OpenAIAgentsProvider
from agents import Agent, Runner, HostedMCPTool, SQLiteSession

load_dotenv()

api_key = os.getenv("COMPOSIO_API_KEY")
user_id = os.getenv("USER_ID")

if not api_key:
    raise RuntimeError("COMPOSIO_API_KEY is not set. Create a .env file with COMPOSIO_API_KEY=your_key")

# Initialize Composio
composio = Composio(api_key=api_key, provider=OpenAIAgentsProvider())

# Create Tool Router session
session = composio.create(
    user_id=user_id,
    toolkits=["salesforce_service_cloud"]
)
mcp_url = session.mcp.url

# Configure agent with MCP tool
agent = Agent(
    name="Assistant",
    model="gpt-5",
    instructions=(
        "You are a helpful assistant that can access Salesforce service cloud. "
        "Help users perform Salesforce service cloud operations through natural language."
    ),
    tools=[
        HostedMCPTool(
            tool_config={
                "type": "mcp",
                "server_label": "tool_router",
                "server_url": mcp_url,
                "headers": {"x-api-key": api_key},
                "require_approval": "never",
            }
        )
    ],
)

print("\nComposio Tool Router session created.")

chat_session = SQLiteSession("conversation_openai_toolrouter")

print("\nChat started. Type your requests below.")
print("Commands: 'exit', 'quit', or 'q' to end\n")

async def main():
    try:
        result = await Runner.run(
            agent,
            "What can you help me with?",
            session=chat_session
        )
        print(f"Assistant: {result.final_output}\n")
    except Exception as e:
        print(f"Error: {e}\n")

    while True:
        user_input = input("You: ").strip()
        if user_input.lower() in {"exit", "quit", "q"}:
            print("Goodbye!")
            break

        result = await Runner.run(
            agent,
            user_input,
            session=chat_session
        )
        print(f"Assistant: {result.final_output}\n")

asyncio.run(main())
```

```typescript
import 'dotenv/config';
import { Composio } from '@composio/core';
import { OpenAIAgentsProvider } from '@composio/openai-agents';
import { Agent, hostedMcpTool, run, OpenAIConversationsSession } from '@openai/agents';
import * as readline from 'readline';

const composioApiKey = process.env.COMPOSIO_API_KEY;
const userId = process.env.USER_ID;

if (!composioApiKey) {
  throw new Error('COMPOSIO_API_KEY is not set. Create a .env file with COMPOSIO_API_KEY=your_key');
}
if (!userId) {
  throw new Error('USER_ID is not set');
}

// Initialize Composio
const composio = new Composio({
  apiKey: composioApiKey,
  provider: new OpenAIAgentsProvider(),
});

async function main() {
  // Create Tool Router session
  const session = await composio.create(userId as string, {
    toolkits: ['salesforce_service_cloud'],
  });
  const mcpUrl = session.mcp.url;

  // Configure agent with MCP tool
  const agent = new Agent({
    name: 'Assistant',
    model: 'gpt-5',
    instructions:
      'You are a helpful assistant that can access Salesforce service cloud. Help users perform Salesforce service cloud operations through natural language.',
    tools: [
      hostedMcpTool({
        serverLabel: 'tool_router',
        serverUrl: mcpUrl,
        headers: { 'x-api-key': composioApiKey },
        requireApproval: 'never',
      }),
    ],
  });

  // Keep conversation state across turns
  const conversationSession = new OpenAIConversationsSession();

  // Simple CLI
  const rl = readline.createInterface({
    input: process.stdin,
    output: process.stdout,
    prompt: 'You: ',
  });

  console.log('\nComposio Tool Router session created.');
  console.log('\nChat started. Type your requests below.');
  console.log("Commands: 'exit', 'quit', or 'q' to end\n");

  try {
    const first = await run(agent, 'What can you help me with?', { session: conversationSession });
    console.log(`Assistant: ${first.finalOutput}\n`);
  } catch (e) {
    console.error('Error:', e instanceof Error ? e.message : e, '\n');
  }

  rl.prompt();

  rl.on('line', async (userInput) => {
    const text = userInput.trim();

    if (['exit', 'quit', 'q'].includes(text.toLowerCase())) {
      console.log('Goodbye!');
      rl.close();
      process.exit(0);
    }

    if (!text) {
      rl.prompt();
      return;
    }

    try {
      const result = await run(agent, text, { session: conversationSession });
      console.log(`\nAssistant: ${result.finalOutput}\n`);
    } catch (e) {
      console.error('Error:', e instanceof Error ? e.message : e, '\n');
    }

    rl.prompt();
  });

  rl.on('close', () => {
    console.log('\nSession ended.');
    process.exit(0);
  });
}

main().catch((err) => {
  console.error('Fatal error:', err);
  process.exit(1);
});
```

## Conclusion

This was a starter code for integrating Salesforce service cloud MCP with OpenAI Agents SDK to build a functional AI agent that can interact with Salesforce service cloud.
Key features:
- Hosted MCP tool integration through Composio's Tool Router
- SQLite session persistence for conversation history
- Simple async chat loop for interactive testing
You can extend this by adding more toolkits, implementing custom business logic, or building a web interface around the agent.

## How to build Salesforce service cloud MCP Agent with another framework

- [ChatGPT](https://composio.dev/toolkits/salesforce_service_cloud/framework/chatgpt)
- [Claude Agent SDK](https://composio.dev/toolkits/salesforce_service_cloud/framework/claude-agents-sdk)
- [Claude Code](https://composio.dev/toolkits/salesforce_service_cloud/framework/claude-code)
- [Claude Cowork](https://composio.dev/toolkits/salesforce_service_cloud/framework/claude-cowork)
- [Codex](https://composio.dev/toolkits/salesforce_service_cloud/framework/codex)
- [Cursor](https://composio.dev/toolkits/salesforce_service_cloud/framework/cursor)
- [VS Code](https://composio.dev/toolkits/salesforce_service_cloud/framework/vscode)
- [OpenCode](https://composio.dev/toolkits/salesforce_service_cloud/framework/opencode)
- [OpenClaw](https://composio.dev/toolkits/salesforce_service_cloud/framework/openclaw)
- [Hermes](https://composio.dev/toolkits/salesforce_service_cloud/framework/hermes-agent)
- [CLI](https://composio.dev/toolkits/salesforce_service_cloud/framework/cli)
- [Google ADK](https://composio.dev/toolkits/salesforce_service_cloud/framework/google-adk)
- [LangChain](https://composio.dev/toolkits/salesforce_service_cloud/framework/langchain)
- [Vercel AI SDK](https://composio.dev/toolkits/salesforce_service_cloud/framework/ai-sdk)
- [Mastra AI](https://composio.dev/toolkits/salesforce_service_cloud/framework/mastra-ai)
- [LlamaIndex](https://composio.dev/toolkits/salesforce_service_cloud/framework/llama-index)
- [CrewAI](https://composio.dev/toolkits/salesforce_service_cloud/framework/crew-ai)

## Related Toolkits

- [Hubspot](https://composio.dev/toolkits/hubspot) - HubSpot is an all-in-one marketing, sales, and customer service platform. It lets teams nurture leads, automate outreach, and track every customer interaction in one place.
- [Pipedrive](https://composio.dev/toolkits/pipedrive) - Pipedrive is a sales management platform offering pipeline visualization, lead tracking, and workflow automation. It helps sales teams keep deals moving forward efficiently and never miss a follow-up.
- [Salesforce](https://composio.dev/toolkits/salesforce) - Salesforce is a leading CRM platform that helps businesses manage sales, service, and marketing. It centralizes customer data, enabling teams to drive growth and build strong relationships.
- [Apollo](https://composio.dev/toolkits/apollo) - Apollo is a CRM and lead generation platform that helps businesses discover contacts and manage sales pipelines. Use it to streamline customer outreach and track your deals from one place.
- [Attio](https://composio.dev/toolkits/attio) - Attio is a customizable CRM and workspace for managing your team's relationships and workflows. It helps teams organize contacts, automate tasks, and collaborate more efficiently.
- [Acculynx](https://composio.dev/toolkits/acculynx) - AccuLynx is a cloud-based roofing business management software for contractors. It streamlines project tracking, lead management, and document sharing.
- [Addressfinder](https://composio.dev/toolkits/addressfinder) - Addressfinder is a data quality platform for verifying addresses, emails, and phone numbers. It helps you ensure accurate customer and contact data every time.
- [Affinity](https://composio.dev/toolkits/affinity) - Affinity is a relationship intelligence CRM that helps private capital investors find, manage, and close more deals. It streamlines deal flow and surfaces key connections to help you win opportunities.
- [Agencyzoom](https://composio.dev/toolkits/agencyzoom) - AgencyZoom is a sales and performance platform built for P&C insurance agencies. It helps agents boost sales, retain clients, and analyze producer results in one place.
- [Bettercontact](https://composio.dev/toolkits/bettercontact) - Bettercontact is a smart contact enrichment tool for finding emails and phone numbers. It helps boost lead generation with automated, waterfall search across multiple sources.
- [Blackbaud](https://composio.dev/toolkits/blackbaud) - Blackbaud provides cloud-based software for nonprofits, schools, and healthcare institutions. It streamlines fundraising, donor management, and mission-driven operations.
- [Brilliant directories](https://composio.dev/toolkits/brilliant_directories) - Brilliant Directories is an all-in-one platform for building and managing online membership communities and business directories. It streamlines listings, member management, and engagement tools into a single, easy interface.
- [Capsule crm](https://composio.dev/toolkits/capsule_crm) - Capsule CRM is a user-friendly CRM platform for managing contacts and sales pipelines. It helps businesses organize relationships and streamline their sales process efficiently.
- [Centralstationcrm](https://composio.dev/toolkits/centralstationcrm) - CentralStationCRM is an easy-to-use CRM software focused on collaboration and long-term customer relationships. It helps teams manage contacts, deals, and communications all in one place.
- [Clientary](https://composio.dev/toolkits/clientary) - Clientary is a platform for managing clients, invoices, projects, proposals, and more. It streamlines client work and saves you serious admin time.
- [Close](https://composio.dev/toolkits/close) - Close is a CRM platform built for sales teams, combining calling, email automation, and predictive dialers. It streamlines sales workflows and boosts productivity with all-in-one communication tools.
- [Dropcontact](https://composio.dev/toolkits/dropcontact) - Dropcontact is a B2B email finder and data enrichment service for professionals. It delivers verified email addresses and enriches contact info with up-to-date data.
- [Dynamics365](https://composio.dev/toolkits/dynamics365) - Dynamics 365 is Microsoft's platform combining CRM, ERP, and productivity apps. It streamlines sales, marketing, service, and operations in one place.
- [Espocrm](https://composio.dev/toolkits/espocrm) - EspoCRM is an open-source web application for managing customer relationships. It helps businesses organize contacts, track leads, and streamline their sales process.
- [Fireberry](https://composio.dev/toolkits/fireberry) - Fireberry is a CRM platform that streamlines customer and sales management. It helps businesses organize contacts, automate sales, and integrate with other business tools.

## Frequently Asked Questions

### What are the differences in Tool Router MCP and Salesforce service cloud MCP?

With a standalone Salesforce service cloud MCP server, the agents and LLMs can only access a fixed set of Salesforce service cloud tools tied to that server. However, with the Composio Tool Router, agents can dynamically load tools from Salesforce service cloud and many other apps based on the task at hand, all through a single MCP endpoint.

### Can I use Tool Router MCP with OpenAI Agents SDK?

Yes, you can. OpenAI Agents SDK fully supports MCP integration. You get structured tool calling, message history handling, and model orchestration while Tool Router takes care of discovering and serving the right Salesforce service cloud tools.

### Can I manage the permissions and scopes for Salesforce service cloud while using Tool Router?

Yes, absolutely. You can configure which Salesforce service cloud scopes and actions are allowed when connecting your account to Composio. You can also bring your own OAuth credentials or API configuration so you keep full control over what the agent can do.

### How safe is my data with Composio Tool Router?

All sensitive data such as tokens, keys, and configuration is fully encrypted at rest and in transit. Composio is SOC 2 Type 2 compliant and follows strict security practices so your Salesforce service cloud data and credentials are handled as safely as possible.

---
[See all toolkits](https://composio.dev/toolkits) · [Composio docs](https://docs.composio.dev/llms.txt)
