# How to integrate Salesforce service cloud MCP with Pydantic AI

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

## Introduction

This guide walks you through connecting Salesforce service cloud to Pydantic AI 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 Pydantic AI 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)
- [OpenAI Agents SDK](https://composio.dev/toolkits/salesforce_service_cloud/framework/open-ai-agents-sdk)
- [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:
- How to set up your Composio API key and User ID
- How to create a Composio Tool Router session for Salesforce service cloud
- How to attach an MCP Server to a Pydantic AI agent
- How to stream responses and maintain chat history
- How to build a simple REPL-style chat interface to test your Salesforce service cloud workflows

## What is Pydantic AI?

Pydantic AI is a Python framework for building AI agents with strong typing and validation. It leverages Pydantic's data validation capabilities to create robust, type-safe AI applications.
Key features include:
- Type Safety: Built on Pydantic for automatic data validation
- MCP Support: Native support for Model Context Protocol servers
- Streaming: Built-in support for streaming responses
- Async First: Designed for async/await patterns

## 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:
- Python 3.9 or higher
- A Composio account with an active API key
- Basic familiarity with Python and async programming

### 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).
- Navigate to your API settings and generate a new API key.
- Store this key securely as you'll need it for authentication.

### 2. Install dependencies

Install the required libraries.
What's happening:
- composio connects your agent to external SaaS tools like Salesforce service cloud
- pydantic-ai lets you create structured AI agents with tool support
- python-dotenv loads your environment variables securely from a .env file
```bash
pip install composio pydantic-ai python-dotenv
```

### 3. Set up environment variables

Create a .env file in your project root.
What's happening:
- COMPOSIO_API_KEY authenticates your agent to Composio's API
- USER_ID associates your session with your account for secure tool access
- OPENAI_API_KEY to access OpenAI LLMs
```bash
COMPOSIO_API_KEY=your_composio_api_key_here
USER_ID=your_user_id_here
OPENAI_API_KEY=your_openai_api_key
```

### 4. Import dependencies

What's happening:
- We load environment variables and import required modules
- Composio manages connections to Salesforce service cloud
- MCPServerStreamableHTTP connects to the Salesforce service cloud MCP server endpoint
- Agent from Pydantic AI lets you define and run the AI assistant
```python
import asyncio
import os
from dotenv import load_dotenv
from composio import Composio
from pydantic_ai import Agent
from pydantic_ai.mcp import MCPServerStreamableHTTP

load_dotenv()
```

### 5. Create a Tool Router Session

What's happening:
- We're creating a Tool Router session that gives your agent access to Salesforce service cloud tools
- The create method takes the user ID and specifies which toolkits should be available
- The returned session.mcp.url is the MCP server URL that your agent will use
```python
async def main():
    api_key = os.getenv("COMPOSIO_API_KEY")
    user_id = os.getenv("USER_ID")
    if not api_key or not user_id:
        raise RuntimeError("Set COMPOSIO_API_KEY and USER_ID in your environment")

    # Create a Composio Tool Router session for Salesforce service cloud
    composio = Composio(api_key=api_key)
    session = composio.create(
        user_id=user_id,
        toolkits=["salesforce_service_cloud"],
    )
    url = session.mcp.url
    if not url:
        raise ValueError("Composio session did not return an MCP URL")
```

### 6. Initialize the Pydantic AI Agent

What's happening:
- The MCP client connects to the Salesforce service cloud endpoint
- The agent uses GPT-5 to interpret user commands and perform Salesforce service cloud operations
- The instructions field defines the agent's role and behavior
```python
# Attach the MCP server to a Pydantic AI Agent
salesforce_service_cloud_mcp = MCPServerStreamableHTTP(url, headers={"x-api-key": COMPOSIO_API_KEY})
agent = Agent(
    "openai:gpt-5",
    toolsets=[salesforce_service_cloud_mcp],
    instructions=(
        "You are a Salesforce service cloud assistant. Use Salesforce service cloud tools to help users "
        "with their requests. Ask clarifying questions when needed."
    ),
)
```

### 7. Build the chat interface

What's happening:
- The agent reads input from the terminal and streams its response
- Salesforce service cloud API calls happen automatically under the hood
- The model keeps conversation history to maintain context across turns
```python
# Simple REPL with message history
history = []
print("Chat started! Type 'exit' or 'quit' to end.\n")
print("Try asking the agent to help you with Salesforce service cloud.\n")

while True:
    user_input = input("You: ").strip()
    if user_input.lower() in {"exit", "quit", "bye"}:
        print("\nGoodbye!")
        break
    if not user_input:
        continue

    print("\nAgent is thinking...\n", flush=True)

    async with agent.run_stream(user_input, message_history=history) as stream_result:
        collected_text = ""
        async for chunk in stream_result.stream_output():
            text_piece = None
            if isinstance(chunk, str):
                text_piece = chunk
            elif hasattr(chunk, "delta") and isinstance(chunk.delta, str):
                text_piece = chunk.delta
            elif hasattr(chunk, "text"):
                text_piece = chunk.text
            if text_piece:
                collected_text += text_piece
        result = stream_result

    print(f"Agent: {collected_text}\n")
    history = result.all_messages()
```

### 8. Run the application

What's happening:
- The asyncio loop launches the agent and keeps it running until you exit
```python
if __name__ == "__main__":
    asyncio.run(main())
```

## Complete Code

```python
import asyncio
import os
from dotenv import load_dotenv
from composio import Composio
from pydantic_ai import Agent
from pydantic_ai.mcp import MCPServerStreamableHTTP

load_dotenv()

async def main():
    api_key = os.getenv("COMPOSIO_API_KEY")
    user_id = os.getenv("USER_ID")
    if not api_key or not user_id:
        raise RuntimeError("Set COMPOSIO_API_KEY and USER_ID in your environment")

    # Create a Composio Tool Router session for Salesforce service cloud
    composio = Composio(api_key=api_key)
    session = composio.create(
        user_id=user_id,
        toolkits=["salesforce_service_cloud"],
    )
    url = session.mcp.url
    if not url:
        raise ValueError("Composio session did not return an MCP URL")

    # Attach the MCP server to a Pydantic AI Agent
    salesforce_service_cloud_mcp = MCPServerStreamableHTTP(url, headers={"x-api-key": COMPOSIO_API_KEY})
    agent = Agent(
        "openai:gpt-5",
        toolsets=[salesforce_service_cloud_mcp],
        instructions=(
            "You are a Salesforce service cloud assistant. Use Salesforce service cloud tools to help users "
            "with their requests. Ask clarifying questions when needed."
        ),
    )

    # Simple REPL with message history
    history = []
    print("Chat started! Type 'exit' or 'quit' to end.\n")
    print("Try asking the agent to help you with Salesforce service cloud.\n")

    while True:
        user_input = input("You: ").strip()
        if user_input.lower() in {"exit", "quit", "bye"}:
            print("\nGoodbye!")
            break
        if not user_input:
            continue

        print("\nAgent is thinking...\n", flush=True)

        async with agent.run_stream(user_input, message_history=history) as stream_result:
            collected_text = ""
            async for chunk in stream_result.stream_output():
                text_piece = None
                if isinstance(chunk, str):
                    text_piece = chunk
                elif hasattr(chunk, "delta") and isinstance(chunk.delta, str):
                    text_piece = chunk.delta
                elif hasattr(chunk, "text"):
                    text_piece = chunk.text
                if text_piece:
                    collected_text += text_piece
            result = stream_result

        print(f"Agent: {collected_text}\n")
        history = result.all_messages()

if __name__ == "__main__":
    asyncio.run(main())
```

## Conclusion

You've built a Pydantic AI agent that can interact with Salesforce service cloud through Composio's Tool Router. With this setup, your agent can perform real Salesforce service cloud actions through natural language.
You can extend this further by:
- Adding other toolkits like Gmail, HubSpot, or Salesforce
- Building a web-based chat interface around this agent
- Using multiple MCP endpoints to enable cross-app workflows (for example, Gmail + Salesforce service cloud for workflow automation)
This architecture makes your AI agent "agent-native", able to securely use APIs in a unified, composable way without custom integrations.

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

- [ChatGPT](https://composio.dev/toolkits/salesforce_service_cloud/framework/chatgpt)
- [OpenAI Agents SDK](https://composio.dev/toolkits/salesforce_service_cloud/framework/open-ai-agents-sdk)
- [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 Pydantic AI?

Yes, you can. Pydantic AI 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)
