salesforce-metadata-mcp 2.6.5 → 2.6.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/README.md +4 -3
- package/SETUP.md +1 -1
- package/TOOLS.md +2 -2
- package/package.json +12 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.6.6] - 2026-07-06
|
|
4
|
+
|
|
5
|
+
### Public release housekeeping (no functional changes)
|
|
6
|
+
|
|
7
|
+
- GitHub repository is now public: https://github.com/semwalajay83-sem/salesforce-metadata-mcp
|
|
8
|
+
- package.json: added `repository`, `homepage`, `bugs`, and `mcpName` fields; fixed `funding` URL
|
|
9
|
+
- Corrected tool count everywhere to 212 (verified against registered tools); npm description, README, TOOLS.md, QUICKSTART.md updated
|
|
10
|
+
- README badges now track the live npm version and downloads
|
|
11
|
+
- Added `server.json` for the official MCP registry
|
|
12
|
+
- Removed hardcoded org URLs and credentials from test scripts (now read from `.env.local` / environment)
|
|
13
|
+
|
|
3
14
|
## [2.6.5] - 2026-06-17
|
|
4
15
|
|
|
5
16
|
### Fix — Agent creation stops after shell created (topic/action/planner never called)
|
package/README.md
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
# salesforce-metadata-mcp
|
|
2
2
|
|
|
3
|
-
[](https://npmjs.com/package/salesforce-metadata-mcp)
|
|
4
|
+
[](https://npmjs.com/package/salesforce-metadata-mcp)
|
|
4
5
|
[](LICENSE)
|
|
5
6
|
[](https://modelcontextprotocol.io)
|
|
6
7
|
|
|
7
|
-
**The most comprehensive Salesforce metadata and development MCP server.**
|
|
8
|
+
**The most comprehensive Salesforce metadata and development MCP server.** 212 tools for building, configuring, and automating Salesforce orgs directly from Claude or any MCP client.
|
|
8
9
|
|
|
9
10
|
---
|
|
10
11
|
|
|
@@ -197,7 +198,7 @@ See [SETUP.md](SETUP.md) for all authentication methods and detailed setup instr
|
|
|
197
198
|
## Documentation
|
|
198
199
|
|
|
199
200
|
- [SETUP.md](SETUP.md) — Prerequisites, authentication, Claude configuration
|
|
200
|
-
- [TOOLS.md](TOOLS.md) — All
|
|
201
|
+
- [TOOLS.md](TOOLS.md) — All 212 tools with full parameter documentation
|
|
201
202
|
- [AGENTFORCE.md](AGENTFORCE.md) — Agentforce agent creation guide
|
|
202
203
|
- [APEX_LWC.md](APEX_LWC.md) — Apex and LWC development guide
|
|
203
204
|
- [CHANGELOG.md](CHANGELOG.md) — Version history
|
package/SETUP.md
CHANGED
|
@@ -72,7 +72,7 @@ SF_INSTANCE_URL=https://yourorg.my.salesforce.com
|
|
|
72
72
|
SF_ALIAS=myOrg
|
|
73
73
|
```
|
|
74
74
|
|
|
75
|
-
> **Note:** The alias must contain only letters, numbers, hyphens, and underscores (e.g. `myorg`, `
|
|
75
|
+
> **Note:** The alias must contain only letters, numbers, hyphens, and underscores (e.g. `myorg`, `acme3`, `dev-org`). Special characters or spaces will be rejected for security reasons.
|
|
76
76
|
|
|
77
77
|
### Method 3: Static Access Token (Dev/Testing Only)
|
|
78
78
|
|
package/TOOLS.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Tools Reference
|
|
2
2
|
|
|
3
|
-
Complete documentation for all
|
|
3
|
+
Complete documentation for all 212 tools in `salesforce-metadata-mcp`.
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
@@ -246,4 +246,4 @@ Generates a complete MCP server project on disk.
|
|
|
246
246
|
|
|
247
247
|
---
|
|
248
248
|
|
|
249
|
-
*For the complete list of all
|
|
249
|
+
*For the complete list of all 212 tools, see [README.md](README.md).*
|
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "salesforce-metadata-mcp",
|
|
3
|
-
"version": "2.6.
|
|
4
|
-
"description": "The most comprehensive Salesforce MCP server:
|
|
3
|
+
"version": "2.6.6",
|
|
4
|
+
"description": "The most comprehensive Salesforce MCP server: 212 tools covering custom objects, flows, Apex, LWC, page layouts, permissions, profiles, users, reports, dashboards, Experience Cloud, OmniStudio, OmniChannel, Agentforce, Einstein AI, audit trail, territories, monitoring, and more.",
|
|
5
|
+
"mcpName": "io.github.semwalajay83-sem/salesforce-metadata-mcp",
|
|
5
6
|
"license": "MIT",
|
|
6
7
|
"private": false,
|
|
7
8
|
"type": "module",
|
|
@@ -13,9 +14,17 @@
|
|
|
13
14
|
"access": "public",
|
|
14
15
|
"registry": "https://registry.npmjs.org/"
|
|
15
16
|
},
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+https://github.com/semwalajay83-sem/salesforce-metadata-mcp.git"
|
|
20
|
+
},
|
|
21
|
+
"homepage": "https://github.com/semwalajay83-sem/salesforce-metadata-mcp#readme",
|
|
22
|
+
"bugs": {
|
|
23
|
+
"url": "https://github.com/semwalajay83-sem/salesforce-metadata-mcp/issues"
|
|
24
|
+
},
|
|
16
25
|
"funding": {
|
|
17
26
|
"type": "github",
|
|
18
|
-
"url": "https://github.com/
|
|
27
|
+
"url": "https://github.com/sponsors/semwalajay83-sem"
|
|
19
28
|
},
|
|
20
29
|
"scripts": {
|
|
21
30
|
"build": "tsc",
|