Skip to Content
User Guide🧩 Available MCP ServersSalesforce - SObject Reads

Salesforce - SObject Reads

Connect to Salesforce’s official Hosted MCP SObject Reads server to read and search Salesforce object data in read-only mode.

Key Features

  • Retrieve Salesforce object schema and user information
  • Run SOQL queries and SOSL searches
  • View recently accessed SObject records
  • Retrieve related records

Basic Information

Authentication Method

Uses Salesforce OAuth authentication.

Input Parameters

  • sandbox (Optional): Whether to connect to a Salesforce Sandbox environment

Supported MCP Tools

Schema and Context Tools

getObjectSchema

Retrieves Salesforce object schema information in a format that is easy for the LLM to use.

getUserInfo

Retrieves identification and context information for the currently authenticated Salesforce user.

Data Retrieval and Search Tools

listRecentSobjectRecords

Retrieves specific SObject records that the user has recently viewed or modified.

soqlQuery

Runs a SOQL query to retrieve Salesforce records.

find

Runs a SOSL-based text search to find data across multiple Salesforce objects.

getRelatedRecords

Retrieves related child records by following relationships from a parent record.

Usage Examples

For example,

  • if you enter a prompt like “Show me the Opportunities created this month”,
  • the LLM calls the soqlQuery tool through MCP,
  • and responds in the chat based on the tool result.

Other example prompts:

  • “Show me the field structure of the Contact object”
  • “Show me the Case records I viewed recently”
  • “Retrieve the related child records for this Account”

Notes

  • This read-only server does not support creating, updating, or deleting records.
  • Available data depends on your Salesforce object and field permissions.
Last updated on