Community MCP server for Salesforce CRM. Agents can execute SOQL queries, create and update Salesforce objects (Accounts, Contacts, Leads, Opportunities), manage custom objects, trigger automation flows, and access metadata. Supports Salesforce OAuth and JWT authentication. Essential for enterprise sales teams needing AI-powered CRM automation and data analysis.
npx -y @salesforce/mcp-server
{
"mcpServers": {
"salesforce": {
"env": {
"SF_PASSWORD": "your-password",
"SF_USERNAME": "your-username",
"SF_LOGIN_URL": "https://login.salesforce.com",
"SF_SECURITY_TOKEN": "your-token"
},
"args": [
"-y",
"@salesforce/mcp-server"
],
"command": "npx"
}
}
}Create Salesforce record
{
"type": "object",
"required": [
"object_type",
"fields"
],
"properties": {
"fields": {
"type": "object"
},
"object_type": {
"type": "string"
}
}
}// Input
{
"fields": {
"Company": "ACME",
"LastName": "Doe",
"FirstName": "John"
},
"object_type": "Lead"
}// Output
{
"id": "00Q1",
"success": true
}Run Salesforce SOQL query
{
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string"
}
}
}// Input
{
"query": "SELECT Id, Name FROM Account LIMIT 5"
}// Output
{
"records": [
{
"Id": "001",
"Name": "Acme Corp"
}
],
"totalSize": 5
}Community MCP server for Salesforce CRM. Agents can execute SOQL queries, create and update Salesforce objects (Accounts, Contacts, Leads, Opportunities), manage custom objects, trigger automation flows, and access metadata. Supports Salesforce OAuth and JWT authentication. Essential for enterprise sales teams needing AI-powered CRM automation and data analysis.
Salesforce provides 2 tools including create_record, query_soql.
Salesforce offers a free tier with 200 calls per month. For higher usage, paid plans start at €0/month.
You can install Salesforce using the following command: npx -y @salesforce/mcp-server. After installation, add the provided config snippet to your Claude Desktop or Cursor configuration.
Salesforce is listed under the Finance & Accounting category in the AgentForge MCP registry.
Salesforce has a current uptime of 99.82% with an average response time of 320ms.
To connect Salesforce, click the "Connect Agent" button on this page to get the configuration snippet. Add it to your MCP client (Claude Desktop, Cursor, or any MCP-compatible tool). Your AI agent will then have access to all of Salesforce's tools via the Model Context Protocol.