A Salesforce connector MCP Server.
A Salesforce connector MCP Server. The salesforce mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 14 defined tools rather than through you.
An MCP (Model Context Protocol) server implementation that integrates Claude with Salesforce, enabling natural language interactions with your Salesforce data and metadata. This server allows Claude to query, modify, and manage your Salesforce objects and records using everyday language.
Everything the assistant can do here goes through one of these:
salesforce_search_objects — Search for standard and custom objects: * Search by partial name matches * Finds both standard and custom objects * Example: "Find objects related tosalesforce_describe_object — Get detailed object schema information: * Field definitions and properties * Relationship details * Picklist values * Example: "Show me all fields insalesforce_query_records — Query records with relationship support: * Parent-to-child relationships * Child-to-parent relationships * Complex WHERE conditions * Example: "Getsalesforce_aggregate_query — Execute aggregate queries with GROUP BY: * GROUP BY single or multiple fields * Aggregate functions: COUNT, COUNT_DISTINCT, SUM, AVG, MIN, MAX *salesforce_dml_records — Perform data operations: * Insert new records * Update existing records * Delete records * Upsert using external IDs * Example: "Update status ofsalesforce_manage_object — Create and modify custom objects: * Create new custom objects * Update object properties * Configure sharing settings * Example: "Create a Customersalesforce_manage_field — Manage object fields: * Add new custom fields * Modify field properties * Create relationships * Automatically grants Field Level Security to Systemsalesforce_manage_field_permissions — Manage Field Level Security (Field Permissions): * Grant or revoke read/edit access to fields for specific profiles * View current field permissionssalesforce_search_all — Search across multiple objects: * SOSL-based search * Multiple object support * Field snippets * Example: "Search for 'cloud' across Accounts andsalesforce_read_apex — Read Apex classes: * Get full source code of specific classes * List classes matching name patterns * View class metadata (API version, status, etc.)salesforce_write_apex — Create and update Apex classes: * Create new Apex classes * Update existing class implementations * Specify API versions * Example: "Create a newsalesforce_read_apex_trigger — Read Apex triggers: * Get full source code of specific triggers * List triggers matching name patterns * View trigger metadata (API version, object@tsmztech/mcp-server-salesforce on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.
You will need 7 environment variables: SALESFORCE_CONNECTION_TYPE, SALESFORCE_USERNAME, SALESFORCE_PASSWORD, SALESFORCE_TOKEN, SALESFORCE_INSTANCE_URL, SALESFORCE_CLIENT_ID, SALESFORCE_CLIENT_SECRET. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.
This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Salesforce's toolset — salesforce_search_objects, salesforce_describe_object, salesforce_query_records and 11 more — is a fair guide to whether it matches your workflow. It is maintained by JereSalguero30; worth a glance at recent repository activity before you build anything load-bearing on it.
We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.
| Tool | What it does |
|---|---|
| salesforce_search_objects | Search for standard and custom objects: * Search by partial name matches * Finds both standard and custom objects * Example: "Find objects related to Account" will find Account, AccountHistory, etc. |
| salesforce_describe_object | Get detailed object schema information: * Field definitions and properties * Relationship details * Picklist values * Example: "Show me all fields in the Account object" |
| salesforce_query_records | Query records with relationship support: * Parent-to-child relationships * Child-to-parent relationships * Complex WHERE conditions * Example: "Get all Accounts with their related Contacts" * Note: For queries with GROUP |
| salesforce_aggregate_query | Execute aggregate queries with GROUP BY: * GROUP BY single or multiple fields * Aggregate functions: COUNT, COUNT_DISTINCT, SUM, AVG, MIN, MAX * HAVING clauses for filtering grouped results * Date/time grouping functions |
| salesforce_dml_records | Perform data operations: * Insert new records * Update existing records * Delete records * Upsert using external IDs * Example: "Update status of multiple accounts" |
| salesforce_manage_object | Create and modify custom objects: * Create new custom objects * Update object properties * Configure sharing settings * Example: "Create a Customer Feedback object" |
| salesforce_manage_field | Manage object fields: * Add new custom fields * Modify field properties * Create relationships * Automatically grants Field Level Security to System Administrator by default * Use grantAccessTo parameter to specify diffe |
| salesforce_manage_field_permissions | Manage Field Level Security (Field Permissions): * Grant or revoke read/edit access to fields for specific profiles * View current field permissions * Bulk update permissions for multiple profiles * Useful for managing p |
| salesforce_search_all | Search across multiple objects: * SOSL-based search * Multiple object support * Field snippets * Example: "Search for 'cloud' across Accounts and Opportunities" |
| salesforce_read_apex | Read Apex classes: * Get full source code of specific classes * List classes matching name patterns * View class metadata (API version, status, etc.) * Support for wildcards (* and ?) in name patterns * Example: "Show me |
| salesforce_write_apex | Create and update Apex classes: * Create new Apex classes * Update existing class implementations * Specify API versions * Example: "Create a new Apex class for handling account operations" |
| salesforce_read_apex_trigger | Read Apex triggers: * Get full source code of specific triggers * List triggers matching name patterns * View trigger metadata (API version, object, status, etc.) * Support for wildcards (* and ?) in name patterns * Exam |
| salesforce_write_apex_trigger | Create and update Apex triggers: * Create new Apex triggers for specific objects * Update existing trigger implementations * Specify API versions and event operations * Example: "Create a new trigger for the Account obje |
| salesforce_execute_anonymous | Execute anonymous Apex code: * Run Apex code without creating a permanent class * View debug logs and execution results * Useful for data operations not directly supported by other tools * Example: "Execute Apex code to |
{
"mcpServers": {
"salesforce": {
"command": "npx",
"args": ["-y", "@tsmztech/mcp-server-salesforce"],
"env": {
"SALESFORCE_CONNECTION_TYPE": "User_Password",
"SALESFORCE_USERNAME": "your_username",
"SALESFORCE_PASSWORD": "your_password",
"SALESFORCE_TOKEN": "your_security_token",
"SALESFORCE_INSTANCE_URL": "org_url" // Optional. Default value: https://login.salesforce.com
}
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| SALESFORCE_CONNECTION_TYPE | Configuration value read at startup. | Optional |
| SALESFORCE_USERNAME | Configuration value read at startup. | Optional |
| SALESFORCE_PASSWORD | Configuration value read at startup. | Optional |
| SALESFORCE_TOKEN | Credential the server authenticates with. | Yes |
| SALESFORCE_INSTANCE_URL | Endpoint or connection string the server talks to. | Yes |
| SALESFORCE_CLIENT_ID | Configuration value read at startup. | Optional |
| SALESFORCE_CLIENT_SECRET | Credential the server authenticates with. | Yes |
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.