A lite, single-org Salesforce MCP server built on jsforce. Bring-your-own OAuth token — no credentials stored server-side. Runs over stdio (Claude
Salesforce MCP server exists for a simple reason — assistants are far more useful when they can act on Salesforce directly instead of describing what you should do. A lite, single-org Salesforce MCP server built on jsforce. Bring-your-own OAuth token — no credentials stored server-side. Runs over stdio (Claude Code) or as a dedicated streamable-HTTP server.
login opens a browser, completes the OAuth handshake, saves the token to ~/.config/salesforce-mcp-jsforce/token.json, and prints ready-to-paste config.
Once Salesforce is connected, these are the calls the assistant has available:
salesforce_identity — readsalesforce_query — readsalesforce_search — readsalesforce_list_objects — readsalesforce_describe_object — readsalesforce_get_record — readsalesforce_create_record — writesalesforce_update_record — writesalesforce_delete_record — writeYou will need 6 environment variables: ECA_CONSUMER_KEY, SF_ACCESS_TOKEN, SF_INSTANCE_URL, SF_LOGIN_URL, SF_CLIENT_ID, SF_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.
The server ships on npm as @imazhar101/salesforce-mcp-jsforce, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.
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_identity, salesforce_query, salesforce_search and 6 more — is a fair guide to whether it matches your workflow. It is maintained by imazhar101; worth a glance at recent repository activity before you build anything load-bearing on it.
This entry was verified against Salesforce's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.
| Tool | What it does |
|---|---|
| salesforce_identity | read |
| salesforce_query | read |
| salesforce_search | read |
| salesforce_list_objects | read |
| salesforce_describe_object | read |
| salesforce_get_record | read |
| salesforce_create_record | write |
| salesforce_update_record | write |
| salesforce_delete_record | write |
{
"mcpServers": {
"salesforce-1": {
"command": "npx",
"args": ["-y", "@imazhar101/salesforce-mcp-jsforce"],
"env": {
"ECA_CONSUMER_KEY": "your-value",
"SF_ACCESS_TOKEN": "your-value",
"SF_INSTANCE_URL": "your-value",
"SF_LOGIN_URL": "your-value",
"SF_CLIENT_ID": "your-value",
"SF_CLIENT_SECRET": "your-value"
}
}
}
}Add to claude_desktop_config.json, then restart Claude Desktop.
| Variable | Description | Required |
|---|---|---|
| ECA_CONSUMER_KEY | Credential the server authenticates with. | Yes |
| SF_ACCESS_TOKEN | Credential the server authenticates with. | Yes |
| SF_INSTANCE_URL | Endpoint or connection string the server talks to. | Yes |
| SF_LOGIN_URL | Endpoint or connection string the server talks to. | Yes |
| SF_CLIENT_ID | Configuration value read at startup. | Optional |
| SF_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.