salesforce-mcp

MCP server for querying and managing Salesforce CRM data from CLI

brewmacoslinux
Try with needOr install directly
Source

About

MCP Server for interacting with Salesforce instances

Commands

salesforce-mcp

Examples

query salesforce records and display results$ salesforce-mcp query --sobject Account --where "Name LIKE '%Acme%'"
create a new salesforce contact record$ salesforce-mcp create --sobject Contact --data '{"FirstName": "John", "LastName": "Doe", "Email": "john@example.com"}'
update an existing salesforce record by id$ salesforce-mcp update --sobject Opportunity --id 0061700000IZ3SAAW --data '{"Amount": 50000}'
list all fields available on a salesforce object$ salesforce-mcp describe --sobject Lead
authenticate and connect to a salesforce instance$ salesforce-mcp auth --login-url https://login.salesforce.com