@salesforce/mcp 0.19.1-dev.0 → 0.19.2-dev.0

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/lib/index.js CHANGED
@@ -144,6 +144,7 @@ You can also use special values to control access to orgs:
144
144
  const transport = new StdioServerTransport();
145
145
  await server.connect(transport);
146
146
  console.error(`✅ Salesforce MCP Server v${this.config.version} running on stdio`);
147
+ console.error('BUNDLE BUILD TESTING');
147
148
  }
148
149
  async catch(error) {
149
150
  if (!this.telemetry && !process.argv.includes('--no-telemetry')) {
@@ -14,7 +14,7 @@
14
14
  * limitations under the License.
15
15
  */
16
16
  import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
17
- import { Logger } from '@salesforce/core';
17
+ import { Logger } from '@salesforce/core-bundle';
18
18
  import { createRateLimiter } from './utils/rate-limiter.js';
19
19
  /**
20
20
  * A server implementation that extends the base MCP server with telemetry and rate limiting capabilities.
@@ -1,4 +1,4 @@
1
- import { Connection, type OrgAuthorization } from '@salesforce/core';
1
+ import { Connection, type OrgAuthorization } from '@salesforce/core-bundle';
2
2
  import { type OrgConfigInfo, type SanitizedOrgAuthorization } from '@salesforce/mcp-provider-api';
3
3
  /**
4
4
  * Sanitizes org authorization data by filtering out sensitive fields
package/lib/utils/auth.js CHANGED
@@ -13,7 +13,7 @@
13
13
  * See the License for the specific language governing permissions and
14
14
  * limitations under the License.
15
15
  */
16
- import { AuthInfo, Connection, ConfigAggregator, OrgConfigProperties } from '@salesforce/core';
16
+ import { AuthInfo, Connection, ConfigAggregator, OrgConfigProperties } from '@salesforce/core-bundle';
17
17
  import Cache from './cache.js';
18
18
  /**
19
19
  * Sanitizes org authorization data by filtering out sensitive fields
@@ -13,7 +13,9 @@
13
13
  * See the License for the specific language governing permissions and
14
14
  * limitations under the License.
15
15
  */
16
- import { Mutex } from '@salesforce/core';
16
+ // import { Mutex } from '@salesforce/core-bundle';
17
+ import pkg from '@salesforce/core-bundle';
18
+ const { Mutex } = pkg;
17
19
  /**
18
20
  * A thread-safe cache providing generic Map operations with mutex protection.
19
21
  * Offers atomic read, write, and update operations for concurrent access.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/mcp",
3
- "version": "0.19.1-dev.0",
3
+ "version": "0.19.2-dev.0",
4
4
  "description": "MCP Server for interacting with Salesforce instances",
5
5
  "bin": {
6
6
  "sf-mcp-server": "bin/run.js"
@@ -44,15 +44,15 @@
44
44
  "dependencies": {
45
45
  "@modelcontextprotocol/sdk": "^1.16.0",
46
46
  "@oclif/core": "^4.5.1",
47
- "@salesforce/agents": "^0.15.4",
48
- "@salesforce/apex-node": "^8.2.1",
49
- "@salesforce/core": "^8.18.0",
47
+ "@salesforce/agents-bundle": "^0.17.5",
48
+ "@salesforce/apex-node-bundle": "^8.2.8",
49
+ "@salesforce/core-bundle": "^8.21.0",
50
50
  "@salesforce/kit": "^3.1.6",
51
51
  "@salesforce/mcp-provider-api": "0.2.0",
52
52
  "@salesforce/mcp-provider-dx-core": "0.2.2",
53
53
  "@salesforce/mcp-provider-code-analyzer": "0.0.2",
54
- "@salesforce/source-deploy-retrieve": "^12.22.0",
55
- "@salesforce/source-tracking": "^7.4.8",
54
+ "@salesforce/source-deploy-retrieve-bundle": "^12.22.9",
55
+ "@salesforce/source-tracking-bundle": "^7.4.9",
56
56
  "@salesforce/telemetry": "^6.1.0",
57
57
  "@salesforce/ts-types": "^2.0.11",
58
58
  "zod": "^3.25.76"