@salesforce/mcp 0.30.4 → 0.30.5
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/README.md +2 -2
- package/lib/utils/registry-utils.js +9 -0
- package/npm-shrinkwrap.json +66 -66
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -175,7 +175,7 @@ These are the available toolsets.
|
|
|
175
175
|
| `core` | Core set of DX MCP tools. This toolset is always enabled. | [Link](#core-toolset-always-enabled) |
|
|
176
176
|
| `data` | Tools to manage the data in your org, such as listing all accounts. | [Link](#data-toolset) |
|
|
177
177
|
| `devops` | Tools to securely and autonomously read, manage, and operate DevOps Center resources. | [Link](#devops-center-toolset) |
|
|
178
|
-
| `
|
|
178
|
+
| `enrichment`| Tools to enrich metadata components in your DX project. | [Link](#enrichment-toolset) |
|
|
179
179
|
| `experts-validation` | Tools to validate and score LWC components for production readiness across accessibility, security, and best practices. | [Link](#experts-validation-toolset) |
|
|
180
180
|
| `lwc-experts` | Tools to assist with Lightning Web Component (LWC) development, testing, optimization, and best practices. | [Link](#lightning-web-components-lwc-experts-toolset) |
|
|
181
181
|
| `metadata` | Tools to deploy and retrieve metadata to and from your org and your DX project. | [Link](#metadata-toolset) |
|
|
@@ -264,7 +264,7 @@ For complete documentation, see [Use DX MCP Tools for LWC](https://developer.sal
|
|
|
264
264
|
- `create_lightning_type` (GA) - Provides guidance for creating Custom Lightning Types (CLT) for Salesforce applications, agent actions, Lightning web components, and Lightning Platform integrations.
|
|
265
265
|
- `explore_slds_blueprints` (NON-GA) - Retrieves SLDS blueprint specifications by name, category, Lightning component, CSS class, or styling hook.
|
|
266
266
|
- `guide_design_general` (GA) - Provides SLDS guidelines and best practices for Lightning Web Components with accessibility, responsive design, and component usage patterns.
|
|
267
|
-
- `
|
|
267
|
+
- `guide_component_accessibility` (GA) - Provides accessibility guidelines and testing instructions for LWC components.
|
|
268
268
|
- `guide_lwc_best_practices` (GA) - Offers LWC development best practices and coding standards guidance.
|
|
269
269
|
- `guide_lwc_development` (GA) - Provides LWC development workflow and implementation guidelines.
|
|
270
270
|
- `guide_lwc_rtl_support` (GA) - Provides Right-to-Left (RTL) internationalization support and RTL development guidance.
|
|
@@ -73,6 +73,15 @@ export async function registerToolsets(toolsets, tools, useDynamicTools, allowNo
|
|
|
73
73
|
// Then rename the old tool with create_lwc_component_from_prd in the tools array
|
|
74
74
|
tools[tools.indexOf('create_lwc_component')] = 'create_lwc_component_from_prd';
|
|
75
75
|
}
|
|
76
|
+
// This is a temporary fix to handle a tool rename. Tool alias support is coming soon.
|
|
77
|
+
// If the invalid tools list includes the *old* guide_lwc_accessibility tool name
|
|
78
|
+
if (invalidTools.includes('guide_lwc_accessibility')) {
|
|
79
|
+
ux.stderr('Tool "guide_lwc_accessibility" has been renamed to "guide_component_accessibility". Update config to remove this warning.');
|
|
80
|
+
// Remove that entry from invalidTools
|
|
81
|
+
invalidTools.splice(invalidTools.indexOf('guide_lwc_accessibility'), 1);
|
|
82
|
+
// Then rename the old tool with guide_component_accessibility in the tools array
|
|
83
|
+
tools[tools.indexOf('guide_lwc_accessibility')] = 'guide_component_accessibility';
|
|
84
|
+
}
|
|
76
85
|
if (invalidTools.length > 0)
|
|
77
86
|
throw new Error(`Invalid tool names provided to --tools: "${invalidTools.join('", "')}"
|
|
78
87
|
Valid tools include:
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/mcp",
|
|
3
|
-
"version": "0.30.
|
|
3
|
+
"version": "0.30.5",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/mcp",
|
|
9
|
-
"version": "0.30.
|
|
9
|
+
"version": "0.30.5",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@modelcontextprotocol/sdk": "^1.18.0",
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"@salesforce/mcp-provider-aura-experts": "0.3.7",
|
|
20
20
|
"@salesforce/mcp-provider-code-analyzer": "0.7.1",
|
|
21
21
|
"@salesforce/mcp-provider-devops": "0.3.4",
|
|
22
|
-
"@salesforce/mcp-provider-dx-core": "0.9.
|
|
23
|
-
"@salesforce/mcp-provider-lwc-experts": "0.
|
|
22
|
+
"@salesforce/mcp-provider-dx-core": "0.9.6",
|
|
23
|
+
"@salesforce/mcp-provider-lwc-experts": "0.7.0",
|
|
24
24
|
"@salesforce/mcp-provider-metadata-enrichment": "0.1.5",
|
|
25
25
|
"@salesforce/mcp-provider-mobile-web": "0.2.2",
|
|
26
26
|
"@salesforce/mcp-provider-scale-products": "0.0.5",
|
|
@@ -3968,9 +3968,9 @@
|
|
|
3968
3968
|
}
|
|
3969
3969
|
},
|
|
3970
3970
|
"node_modules/@oclif/core": {
|
|
3971
|
-
"version": "4.10.
|
|
3972
|
-
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-4.10.
|
|
3973
|
-
"integrity": "sha512-
|
|
3971
|
+
"version": "4.10.4",
|
|
3972
|
+
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-4.10.4.tgz",
|
|
3973
|
+
"integrity": "sha512-4aMd2BAhmGWjiASzJVmEAaPTZStxW0+VdylON5m+LwbxlG2HD7aTHZ7gWqeHBm/rXH5mi1WLb5LlQTCL+VdELQ==",
|
|
3974
3974
|
"license": "MIT",
|
|
3975
3975
|
"dependencies": {
|
|
3976
3976
|
"ansi-escapes": "^4.3.2",
|
|
@@ -4587,9 +4587,9 @@
|
|
|
4587
4587
|
}
|
|
4588
4588
|
},
|
|
4589
4589
|
"node_modules/@salesforce/code-analyzer-core/node_modules/@types/node": {
|
|
4590
|
-
"version": "20.19.
|
|
4591
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.
|
|
4592
|
-
"integrity": "sha512-
|
|
4590
|
+
"version": "20.19.39",
|
|
4591
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.39.tgz",
|
|
4592
|
+
"integrity": "sha512-orrrD74MBUyK8jOAD/r0+lfa1I2MO6I+vAkmAWzMYbCcgrN4lCrmK52gRFQq/JRxfYPfonkr4b0jcY7Olqdqbw==",
|
|
4593
4593
|
"license": "MIT",
|
|
4594
4594
|
"dependencies": {
|
|
4595
4595
|
"undici-types": "~6.21.0"
|
|
@@ -4609,9 +4609,9 @@
|
|
|
4609
4609
|
}
|
|
4610
4610
|
},
|
|
4611
4611
|
"node_modules/@salesforce/code-analyzer-engine-api/node_modules/@types/node": {
|
|
4612
|
-
"version": "20.19.
|
|
4613
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.
|
|
4614
|
-
"integrity": "sha512-
|
|
4612
|
+
"version": "20.19.39",
|
|
4613
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.39.tgz",
|
|
4614
|
+
"integrity": "sha512-orrrD74MBUyK8jOAD/r0+lfa1I2MO6I+vAkmAWzMYbCcgrN4lCrmK52gRFQq/JRxfYPfonkr4b0jcY7Olqdqbw==",
|
|
4615
4615
|
"license": "MIT",
|
|
4616
4616
|
"dependencies": {
|
|
4617
4617
|
"undici-types": "~6.21.0"
|
|
@@ -4905,9 +4905,9 @@
|
|
|
4905
4905
|
}
|
|
4906
4906
|
},
|
|
4907
4907
|
"node_modules/@salesforce/code-analyzer-eslint-engine/node_modules/@types/node": {
|
|
4908
|
-
"version": "20.19.
|
|
4909
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.
|
|
4910
|
-
"integrity": "sha512-
|
|
4908
|
+
"version": "20.19.39",
|
|
4909
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.39.tgz",
|
|
4910
|
+
"integrity": "sha512-orrrD74MBUyK8jOAD/r0+lfa1I2MO6I+vAkmAWzMYbCcgrN4lCrmK52gRFQq/JRxfYPfonkr4b0jcY7Olqdqbw==",
|
|
4911
4911
|
"license": "MIT",
|
|
4912
4912
|
"dependencies": {
|
|
4913
4913
|
"undici-types": "~6.21.0"
|
|
@@ -5083,9 +5083,9 @@
|
|
|
5083
5083
|
}
|
|
5084
5084
|
},
|
|
5085
5085
|
"node_modules/@salesforce/code-analyzer-eslint-engine/node_modules/fast-xml-parser": {
|
|
5086
|
-
"version": "5.5.
|
|
5087
|
-
"resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-5.5.
|
|
5088
|
-
"integrity": "sha512-
|
|
5086
|
+
"version": "5.5.10",
|
|
5087
|
+
"resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-5.5.10.tgz",
|
|
5088
|
+
"integrity": "sha512-go2J2xODMc32hT+4Xr/bBGXMaIoiCwrwp2mMtAvKyvEFW6S/v5Gn2pBmE4nvbwNjGhpcAiOwEv7R6/GZ6XRa9w==",
|
|
5089
5089
|
"funding": [
|
|
5090
5090
|
{
|
|
5091
5091
|
"type": "github",
|
|
@@ -5095,7 +5095,7 @@
|
|
|
5095
5095
|
"license": "MIT",
|
|
5096
5096
|
"dependencies": {
|
|
5097
5097
|
"fast-xml-builder": "^1.1.4",
|
|
5098
|
-
"path-expression-matcher": "^1.2.
|
|
5098
|
+
"path-expression-matcher": "^1.2.1",
|
|
5099
5099
|
"strnum": "^2.2.2"
|
|
5100
5100
|
},
|
|
5101
5101
|
"bin": {
|
|
@@ -5245,9 +5245,9 @@
|
|
|
5245
5245
|
}
|
|
5246
5246
|
},
|
|
5247
5247
|
"node_modules/@salesforce/code-analyzer-eslint8-engine/node_modules/@types/node": {
|
|
5248
|
-
"version": "20.19.
|
|
5249
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.
|
|
5250
|
-
"integrity": "sha512-
|
|
5248
|
+
"version": "20.19.39",
|
|
5249
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.39.tgz",
|
|
5250
|
+
"integrity": "sha512-orrrD74MBUyK8jOAD/r0+lfa1I2MO6I+vAkmAWzMYbCcgrN4lCrmK52gRFQq/JRxfYPfonkr4b0jcY7Olqdqbw==",
|
|
5251
5251
|
"license": "MIT",
|
|
5252
5252
|
"dependencies": {
|
|
5253
5253
|
"undici-types": "~6.21.0"
|
|
@@ -5662,9 +5662,9 @@
|
|
|
5662
5662
|
}
|
|
5663
5663
|
},
|
|
5664
5664
|
"node_modules/@salesforce/code-analyzer-pmd-engine/node_modules/@types/node": {
|
|
5665
|
-
"version": "20.19.
|
|
5666
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.
|
|
5667
|
-
"integrity": "sha512-
|
|
5665
|
+
"version": "20.19.39",
|
|
5666
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.39.tgz",
|
|
5667
|
+
"integrity": "sha512-orrrD74MBUyK8jOAD/r0+lfa1I2MO6I+vAkmAWzMYbCcgrN4lCrmK52gRFQq/JRxfYPfonkr4b0jcY7Olqdqbw==",
|
|
5668
5668
|
"license": "MIT",
|
|
5669
5669
|
"dependencies": {
|
|
5670
5670
|
"undici-types": "~6.21.0"
|
|
@@ -5686,9 +5686,9 @@
|
|
|
5686
5686
|
}
|
|
5687
5687
|
},
|
|
5688
5688
|
"node_modules/@salesforce/code-analyzer-regex-engine/node_modules/@types/node": {
|
|
5689
|
-
"version": "20.19.
|
|
5690
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.
|
|
5691
|
-
"integrity": "sha512-
|
|
5689
|
+
"version": "20.19.39",
|
|
5690
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.39.tgz",
|
|
5691
|
+
"integrity": "sha512-orrrD74MBUyK8jOAD/r0+lfa1I2MO6I+vAkmAWzMYbCcgrN4lCrmK52gRFQq/JRxfYPfonkr4b0jcY7Olqdqbw==",
|
|
5692
5692
|
"license": "MIT",
|
|
5693
5693
|
"dependencies": {
|
|
5694
5694
|
"undici-types": "~6.21.0"
|
|
@@ -5711,9 +5711,9 @@
|
|
|
5711
5711
|
}
|
|
5712
5712
|
},
|
|
5713
5713
|
"node_modules/@salesforce/code-analyzer-retirejs-engine/node_modules/@types/node": {
|
|
5714
|
-
"version": "20.19.
|
|
5715
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.
|
|
5716
|
-
"integrity": "sha512-
|
|
5714
|
+
"version": "20.19.39",
|
|
5715
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.39.tgz",
|
|
5716
|
+
"integrity": "sha512-orrrD74MBUyK8jOAD/r0+lfa1I2MO6I+vAkmAWzMYbCcgrN4lCrmK52gRFQq/JRxfYPfonkr4b0jcY7Olqdqbw==",
|
|
5717
5717
|
"license": "MIT",
|
|
5718
5718
|
"dependencies": {
|
|
5719
5719
|
"undici-types": "~6.21.0"
|
|
@@ -6288,9 +6288,9 @@
|
|
|
6288
6288
|
}
|
|
6289
6289
|
},
|
|
6290
6290
|
"node_modules/@salesforce/mcp-provider-code-analyzer/node_modules/fast-xml-parser": {
|
|
6291
|
-
"version": "5.5.
|
|
6292
|
-
"resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-5.5.
|
|
6293
|
-
"integrity": "sha512-
|
|
6291
|
+
"version": "5.5.10",
|
|
6292
|
+
"resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-5.5.10.tgz",
|
|
6293
|
+
"integrity": "sha512-go2J2xODMc32hT+4Xr/bBGXMaIoiCwrwp2mMtAvKyvEFW6S/v5Gn2pBmE4nvbwNjGhpcAiOwEv7R6/GZ6XRa9w==",
|
|
6294
6294
|
"funding": [
|
|
6295
6295
|
{
|
|
6296
6296
|
"type": "github",
|
|
@@ -6300,7 +6300,7 @@
|
|
|
6300
6300
|
"license": "MIT",
|
|
6301
6301
|
"dependencies": {
|
|
6302
6302
|
"fast-xml-builder": "^1.1.4",
|
|
6303
|
-
"path-expression-matcher": "^1.2.
|
|
6303
|
+
"path-expression-matcher": "^1.2.1",
|
|
6304
6304
|
"strnum": "^2.2.2"
|
|
6305
6305
|
},
|
|
6306
6306
|
"bin": {
|
|
@@ -6348,9 +6348,9 @@
|
|
|
6348
6348
|
}
|
|
6349
6349
|
},
|
|
6350
6350
|
"node_modules/@salesforce/mcp-provider-dx-core": {
|
|
6351
|
-
"version": "0.9.
|
|
6352
|
-
"resolved": "https://registry.npmjs.org/@salesforce/mcp-provider-dx-core/-/mcp-provider-dx-core-0.9.
|
|
6353
|
-
"integrity": "sha512-
|
|
6351
|
+
"version": "0.9.6",
|
|
6352
|
+
"resolved": "https://registry.npmjs.org/@salesforce/mcp-provider-dx-core/-/mcp-provider-dx-core-0.9.6.tgz",
|
|
6353
|
+
"integrity": "sha512-PrYZhhIaGg01VHXLWgnVQ5GeCcyM7Z6ddhAxzer9VySLOgSS53P9/n3YhkTabIJMmrdpPovEHmPXOPA3P5vzaw==",
|
|
6354
6354
|
"license": "Apache-2.0",
|
|
6355
6355
|
"dependencies": {
|
|
6356
6356
|
"@modelcontextprotocol/sdk": "^1.18.0",
|
|
@@ -6381,9 +6381,9 @@
|
|
|
6381
6381
|
}
|
|
6382
6382
|
},
|
|
6383
6383
|
"node_modules/@salesforce/mcp-provider-lwc-experts": {
|
|
6384
|
-
"version": "0.
|
|
6385
|
-
"resolved": "https://registry.npmjs.org/@salesforce/mcp-provider-lwc-experts/-/mcp-provider-lwc-experts-0.
|
|
6386
|
-
"integrity": "sha512-
|
|
6384
|
+
"version": "0.7.0",
|
|
6385
|
+
"resolved": "https://registry.npmjs.org/@salesforce/mcp-provider-lwc-experts/-/mcp-provider-lwc-experts-0.7.0.tgz",
|
|
6386
|
+
"integrity": "sha512-5ykVqLrV9q/UPo28VwqXgwGcJg3ps7Gl9jyD7/94AtYdq/ih9uh4PGZZlk7wy27krfhcCHvbhz/hwtQrkJJfyA==",
|
|
6387
6387
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6388
6388
|
"dependencies": {
|
|
6389
6389
|
"@modelcontextprotocol/sdk": "^1.9.0",
|
|
@@ -6772,9 +6772,9 @@
|
|
|
6772
6772
|
}
|
|
6773
6773
|
},
|
|
6774
6774
|
"node_modules/@salesforce/metadata-enrichment/node_modules/fast-xml-parser": {
|
|
6775
|
-
"version": "5.5.
|
|
6776
|
-
"resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-5.5.
|
|
6777
|
-
"integrity": "sha512-
|
|
6775
|
+
"version": "5.5.10",
|
|
6776
|
+
"resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-5.5.10.tgz",
|
|
6777
|
+
"integrity": "sha512-go2J2xODMc32hT+4Xr/bBGXMaIoiCwrwp2mMtAvKyvEFW6S/v5Gn2pBmE4nvbwNjGhpcAiOwEv7R6/GZ6XRa9w==",
|
|
6778
6778
|
"funding": [
|
|
6779
6779
|
{
|
|
6780
6780
|
"type": "github",
|
|
@@ -6784,7 +6784,7 @@
|
|
|
6784
6784
|
"license": "MIT",
|
|
6785
6785
|
"dependencies": {
|
|
6786
6786
|
"fast-xml-builder": "^1.1.4",
|
|
6787
|
-
"path-expression-matcher": "^1.2.
|
|
6787
|
+
"path-expression-matcher": "^1.2.1",
|
|
6788
6788
|
"strnum": "^2.2.2"
|
|
6789
6789
|
},
|
|
6790
6790
|
"bin": {
|
|
@@ -6870,9 +6870,9 @@
|
|
|
6870
6870
|
}
|
|
6871
6871
|
},
|
|
6872
6872
|
"node_modules/@salesforce/source-deploy-retrieve/node_modules/fast-xml-parser": {
|
|
6873
|
-
"version": "5.5.
|
|
6874
|
-
"resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-5.5.
|
|
6875
|
-
"integrity": "sha512-
|
|
6873
|
+
"version": "5.5.10",
|
|
6874
|
+
"resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-5.5.10.tgz",
|
|
6875
|
+
"integrity": "sha512-go2J2xODMc32hT+4Xr/bBGXMaIoiCwrwp2mMtAvKyvEFW6S/v5Gn2pBmE4nvbwNjGhpcAiOwEv7R6/GZ6XRa9w==",
|
|
6876
6876
|
"funding": [
|
|
6877
6877
|
{
|
|
6878
6878
|
"type": "github",
|
|
@@ -6882,7 +6882,7 @@
|
|
|
6882
6882
|
"license": "MIT",
|
|
6883
6883
|
"dependencies": {
|
|
6884
6884
|
"fast-xml-builder": "^1.1.4",
|
|
6885
|
-
"path-expression-matcher": "^1.2.
|
|
6885
|
+
"path-expression-matcher": "^1.2.1",
|
|
6886
6886
|
"strnum": "^2.2.2"
|
|
6887
6887
|
},
|
|
6888
6888
|
"bin": {
|
|
@@ -6936,9 +6936,9 @@
|
|
|
6936
6936
|
}
|
|
6937
6937
|
},
|
|
6938
6938
|
"node_modules/@salesforce/source-tracking/node_modules/fast-xml-parser": {
|
|
6939
|
-
"version": "5.5.
|
|
6940
|
-
"resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-5.5.
|
|
6941
|
-
"integrity": "sha512-
|
|
6939
|
+
"version": "5.5.10",
|
|
6940
|
+
"resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-5.5.10.tgz",
|
|
6941
|
+
"integrity": "sha512-go2J2xODMc32hT+4Xr/bBGXMaIoiCwrwp2mMtAvKyvEFW6S/v5Gn2pBmE4nvbwNjGhpcAiOwEv7R6/GZ6XRa9w==",
|
|
6942
6942
|
"funding": [
|
|
6943
6943
|
{
|
|
6944
6944
|
"type": "github",
|
|
@@ -6948,7 +6948,7 @@
|
|
|
6948
6948
|
"license": "MIT",
|
|
6949
6949
|
"dependencies": {
|
|
6950
6950
|
"fast-xml-builder": "^1.1.4",
|
|
6951
|
-
"path-expression-matcher": "^1.2.
|
|
6951
|
+
"path-expression-matcher": "^1.2.1",
|
|
6952
6952
|
"strnum": "^2.2.2"
|
|
6953
6953
|
},
|
|
6954
6954
|
"bin": {
|
|
@@ -7989,9 +7989,9 @@
|
|
|
7989
7989
|
}
|
|
7990
7990
|
},
|
|
7991
7991
|
"node_modules/@types/node": {
|
|
7992
|
-
"version": "22.19.
|
|
7993
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.19.
|
|
7994
|
-
"integrity": "sha512-
|
|
7992
|
+
"version": "22.19.17",
|
|
7993
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.19.17.tgz",
|
|
7994
|
+
"integrity": "sha512-wGdMcf+vPYM6jikpS/qhg6WiqSV/OhG+jeeHT/KlVqxYfD40iYJf9/AE1uQxVWFvU7MipKRkRv8NSHiCGgPr8Q==",
|
|
7995
7995
|
"license": "MIT",
|
|
7996
7996
|
"dependencies": {
|
|
7997
7997
|
"undici-types": "~6.21.0"
|
|
@@ -8992,9 +8992,9 @@
|
|
|
8992
8992
|
}
|
|
8993
8993
|
},
|
|
8994
8994
|
"node_modules/baseline-browser-mapping": {
|
|
8995
|
-
"version": "2.10.
|
|
8996
|
-
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.
|
|
8997
|
-
"integrity": "sha512-
|
|
8995
|
+
"version": "2.10.14",
|
|
8996
|
+
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.14.tgz",
|
|
8997
|
+
"integrity": "sha512-fOVLPAsFTsQfuCkvahZkzq6nf8KvGWanlYoTh0SVA0A/PIUxQGU2AOZAoD95n2gFLVDW/jP6sbGLny95nmEuHA==",
|
|
8998
8998
|
"license": "Apache-2.0",
|
|
8999
8999
|
"bin": {
|
|
9000
9000
|
"baseline-browser-mapping": "dist/cli.cjs"
|
|
@@ -11929,9 +11929,9 @@
|
|
|
11929
11929
|
}
|
|
11930
11930
|
},
|
|
11931
11931
|
"node_modules/fast-xml-parser": {
|
|
11932
|
-
"version": "4.5.
|
|
11933
|
-
"resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.5.
|
|
11934
|
-
"integrity": "sha512-
|
|
11932
|
+
"version": "4.5.6",
|
|
11933
|
+
"resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.5.6.tgz",
|
|
11934
|
+
"integrity": "sha512-Yd4vkROfJf8AuJrDIVMVmYfULKmIJszVsMv7Vo71aocsKgFxpdlpSHXSaInvyYfgw2PRuObQSW2GFpVMUjxu9A==",
|
|
11935
11935
|
"funding": [
|
|
11936
11936
|
{
|
|
11937
11937
|
"type": "github",
|
|
@@ -16082,9 +16082,9 @@
|
|
|
16082
16082
|
}
|
|
16083
16083
|
},
|
|
16084
16084
|
"node_modules/path-expression-matcher": {
|
|
16085
|
-
"version": "1.2.
|
|
16086
|
-
"resolved": "https://registry.npmjs.org/path-expression-matcher/-/path-expression-matcher-1.2.
|
|
16087
|
-
"integrity": "sha512-
|
|
16085
|
+
"version": "1.2.1",
|
|
16086
|
+
"resolved": "https://registry.npmjs.org/path-expression-matcher/-/path-expression-matcher-1.2.1.tgz",
|
|
16087
|
+
"integrity": "sha512-d7gQQmLvAKXKXE2GeP9apIGbMYKz88zWdsn/BN2HRWVQsDFdUY36WSLTY0Jvd4HWi7Fb30gQ62oAOzdgJA6fZw==",
|
|
16088
16088
|
"funding": [
|
|
16089
16089
|
{
|
|
16090
16090
|
"type": "github",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/mcp",
|
|
3
|
-
"version": "0.30.
|
|
3
|
+
"version": "0.30.5",
|
|
4
4
|
"description": "MCP Server for interacting with Salesforce instances",
|
|
5
5
|
"bin": {
|
|
6
6
|
"sf-mcp-server": "bin/run.js"
|
|
@@ -45,9 +45,9 @@
|
|
|
45
45
|
"@salesforce/core": "^8.24.3",
|
|
46
46
|
"@salesforce/kit": "^3.1.6",
|
|
47
47
|
"@salesforce/mcp-provider-api": "0.6.0",
|
|
48
|
-
"@salesforce/mcp-provider-dx-core": "0.9.
|
|
48
|
+
"@salesforce/mcp-provider-dx-core": "0.9.6",
|
|
49
49
|
"@salesforce/mcp-provider-code-analyzer": "0.7.1",
|
|
50
|
-
"@salesforce/mcp-provider-lwc-experts": "0.
|
|
50
|
+
"@salesforce/mcp-provider-lwc-experts": "0.7.0",
|
|
51
51
|
"@salesforce/mcp-provider-aura-experts": "0.3.7",
|
|
52
52
|
"@salesforce/mcp-provider-mobile-web": "0.2.2",
|
|
53
53
|
"@salesforce/mcp-provider-devops": "0.3.4",
|