Labsco
jpmonette logo

Salesforce MCP

β˜… 1

from jpmonette

Interact with the Salesforce API using jsforce, requiring username and password for authentication.

πŸ”₯πŸ”₯πŸ”₯βœ“ VerifiedAccount requiredNeeds API keys

Salesforce MCP

A minimal Model Context Protocol (MCP) server for interacting with the Salesforce API using jsforce.

Preview

Run with STDIO

node build/stdio.js

Run with Streamable HTTP

node build/streamable.js

Environment Variables

Set the following to authenticate with Salesforce:

VariableDescription
SALESFORCE_USERNAMEYour Salesforce username
SALESFORCE_PASSWORDYour Salesforce password

Shell

export SALESFORCE_USERNAME=your_username
export SALESFORCE_PASSWORD=your_password

Claude Desktop

{
  "mcpServers": {
    "salesforce": {
      "command": "node",
      "args": ["/Users/jpmonette/Documents/Code/salesforce-mcp/build/stdio.js"],
      "env": {
        "SALESFORCE_USERNAME": "your_username",
        "SALESFORCE_PASSWORD": "your_password"
      }
    }
  }
}

More Information