Salesforce Cloud for VS Code
io.github.aaronsb/salesforce-cloud
AI-powered Salesforce CRM: opportunity intelligence, conversation analysis, SOQL, analytics
client:VS Code
transport:stdio
runtime:npm
Install Salesforce Cloud in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "sf-client-id",
"description": "SF_CLIENT_ID",
"password": true
},
{
"type": "promptString",
"id": "sf-client-secret",
"description": "SF_CLIENT_SECRET",
"password": true
},
{
"type": "promptString",
"id": "sf-username",
"description": "SF_USERNAME",
"password": true
},
{
"type": "promptString",
"id": "sf-password",
"description": "SF_PASSWORD",
"password": true
},
{
"type": "promptString",
"id": "sf-login-url",
"description": "SF_LOGIN_URL",
"password": true
}
],
"servers": {
"salesforce-cloud": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@aaronsb/salesforce-cloud-mcp"
],
"env": {
"SF_CLIENT_ID": "${input:sf-client-id}",
"SF_CLIENT_SECRET": "${input:sf-client-secret}",
"SF_USERNAME": "${input:sf-username}",
"SF_PASSWORD": "${input:sf-password}",
"SF_LOGIN_URL": "${input:sf-login-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs