salesforce-metadata-mcp 2.6.5 → 2.6.7

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 CHANGED
@@ -1,5 +1,24 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.6.7] - 2026-07-06
4
+
5
+ ### Docs-only release (no functional changes)
6
+
7
+ - npm README refreshed: the "Tools (60+)" heading above the tool list now correctly says 212 (the fix landed in git after 2.6.6 was published, so the npm page kept showing the stale heading)
8
+ - npm package description shortened below 250 characters so npm search no longer truncates it mid-word
9
+ - Added `.github/FUNDING.yml` for the GitHub Sponsors button
10
+
11
+ ## [2.6.6] - 2026-07-06
12
+
13
+ ### Public release housekeeping (no functional changes)
14
+
15
+ - GitHub repository is now public: https://github.com/semwalajay83-sem/salesforce-metadata-mcp
16
+ - package.json: added `repository`, `homepage`, `bugs`, and `mcpName` fields; fixed `funding` URL
17
+ - Corrected tool count everywhere to 212 (verified against registered tools); npm description, README, TOOLS.md, QUICKSTART.md updated
18
+ - README badges now track the live npm version and downloads
19
+ - Added `server.json` for the official MCP registry
20
+ - Removed hardcoded org URLs and credentials from test scripts (now read from `.env.local` / environment)
21
+
3
22
  ## [2.6.5] - 2026-06-17
4
23
 
5
24
  ### 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
- [![Version](https://img.shields.io/badge/version-2.5.5-blue.svg)](https://npmjs.com/package/salesforce-metadata-mcp)
3
+ [![npm version](https://img.shields.io/npm/v/salesforce-metadata-mcp.svg)](https://npmjs.com/package/salesforce-metadata-mcp)
4
+ [![npm downloads](https://img.shields.io/npm/dm/salesforce-metadata-mcp.svg)](https://npmjs.com/package/salesforce-metadata-mcp)
4
5
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
5
6
  [![MCP Compatible](https://img.shields.io/badge/MCP-Compatible-green.svg)](https://modelcontextprotocol.io)
6
7
 
7
- **The most comprehensive Salesforce metadata and development MCP server.** 60+ tools for building, configuring, and automating Salesforce orgs directly from Claude or any MCP client.
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
 
@@ -46,7 +47,9 @@ See [SETUP.md](SETUP.md) for all authentication methods and detailed setup instr
46
47
 
47
48
  ---
48
49
 
49
- ## Tools (60+)
50
+ ## Tools — 212 total
51
+
52
+ Highlights below; see [TOOLS.md](TOOLS.md) for the complete reference with parameters and example prompts.
50
53
 
51
54
  ### Objects & Fields
52
55
  | Tool | Description |
@@ -197,7 +200,7 @@ See [SETUP.md](SETUP.md) for all authentication methods and detailed setup instr
197
200
  ## Documentation
198
201
 
199
202
  - [SETUP.md](SETUP.md) — Prerequisites, authentication, Claude configuration
200
- - [TOOLS.md](TOOLS.md) — All 60+ tools with full parameter documentation
203
+ - [TOOLS.md](TOOLS.md) — All 212 tools with full parameter documentation
201
204
  - [AGENTFORCE.md](AGENTFORCE.md) — Agentforce agent creation guide
202
205
  - [APEX_LWC.md](APEX_LWC.md) — Apex and LWC development guide
203
206
  - [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`, `icreon3`, `dev-org`). Special characters or spaces will be rejected for security reasons.
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 60+ tools in `salesforce-metadata-mcp`.
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 60+ tools, see [README.md](README.md).*
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.5",
4
- "description": "The most comprehensive Salesforce MCP server: 132 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.",
3
+ "version": "2.6.7",
4
+ "description": "The most comprehensive Salesforce MCP server: 212 tools covering objects, flows, Apex, LWC, layouts, permissions, profiles, reports, dashboards, Experience Cloud, OmniStudio, Agentforce, Einstein AI, audit trail, 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/semwalajay/salesforce-metadata-mcp"
27
+ "url": "https://github.com/sponsors/semwalajay83-sem"
19
28
  },
20
29
  "scripts": {
21
30
  "build": "tsc",