Skip to content

Commit c08297e

Browse files
authored
Add Salesforce MCP server (#162)
Claude-Session: https://claude.ai/code/session_01S58U7phvDgphx6ZTXuWMJQ Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent fd49d0e commit c08297e

1 file changed

Lines changed: 57 additions & 0 deletions

File tree

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.salesforce-mcp-npx",
4+
"name": "Salesforce (npx)",
5+
"alias": "salesforce",
6+
"description": "Official Salesforce DX MCP server. Interact with your authorized Salesforce orgs from AI clients: deploy and retrieve metadata, run SOQL queries, manage data and users, run Apex tests, and more. Reuses orgs you've already authenticated with the Salesforce CLI.",
7+
"logo": "https://avatars.githubusercontent.com/u/60192002?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"productivity"
11+
],
12+
"tags": [
13+
"salesforce",
14+
"crm",
15+
"salesforce-dx",
16+
"metadata",
17+
"soql",
18+
"apex",
19+
"sfdx"
20+
],
21+
"transport": {
22+
"type": "stdio",
23+
"command": "npx",
24+
"args": [
25+
"-y",
26+
"@salesforce/mcp",
27+
"--orgs",
28+
"DEFAULT_TARGET_ORG",
29+
"--toolsets",
30+
"all"
31+
]
32+
},
33+
"auth": {
34+
"type": "none",
35+
"instructions": "Authenticate an org first with the Salesforce CLI (`sf org login web`); the server uses your locally authorized orgs."
36+
},
37+
"contributor": {
38+
"name": "Salesforce",
39+
"github": "salesforcecli",
40+
"url": "https://www.salesforce.com"
41+
},
42+
"links": {
43+
"repository": "https://github.com/salesforcecli/mcp",
44+
"homepage": "https://www.salesforce.com",
45+
"documentation": "https://github.com/salesforcecli/mcp#readme"
46+
},
47+
"platforms": [
48+
"all"
49+
],
50+
"capabilities": {
51+
"tools": true,
52+
"resources": false,
53+
"prompts": false,
54+
"read_only_mode": false
55+
},
56+
"changelog_url": "https://github.com/salesforcecli/mcp/releases"
57+
}

0 commit comments

Comments
 (0)