@salesforce/mcp 0.26.5 → 0.26.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/README.md +206 -169
- package/npm-shrinkwrap.json +142 -87
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -7,16 +7,16 @@ MCP Server for Interacting with Salesforce Orgs
|
|
|
7
7
|
## Feedback
|
|
8
8
|
|
|
9
9
|
Report bugs and issues [here](https://github.com/forcedotcom/mcp/issues).
|
|
10
|
-
For feature requests and other related topics, start a Discussion [here](https://github.com/forcedotcom/mcp/discussions).
|
|
10
|
+
For feature requests and other related topics, start a Discussion [here](https://github.com/forcedotcom/mcp/discussions).
|
|
11
11
|
|
|
12
12
|
## Documentation
|
|
13
13
|
|
|
14
|
-
For
|
|
14
|
+
For general documentation about the Salesforce DX MCP Server, see [this section](https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_dev_mcp.htm) in the _Salesforce DX Developer Guide_. The docs include:
|
|
15
15
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
16
|
+
- Comprehensive overview, including details about the security features.
|
|
17
|
+
- Quick start guide.
|
|
18
|
+
- Multiple examples of configuring the server in your MCP client.
|
|
19
|
+
- Sample prompts for invoking the core DX MCP tools.
|
|
20
20
|
|
|
21
21
|
[Here are the release notes.](https://github.com/forcedotcom/mcp/tree/main/releasenotes)
|
|
22
22
|
|
|
@@ -29,45 +29,47 @@ The Salesforce DX MCP Server is a specialized Model Context Protocol (MCP) imple
|
|
|
29
29
|
|
|
30
30
|
## Configure the DX MCP Server
|
|
31
31
|
|
|
32
|
-
Configure the Salesforce DX MCP Server for your MCP client by updating its associated MCP JSON file; each client is slightly different, so check your MCP client documentation for details. See [MCP Client Configurations](
|
|
32
|
+
Configure the Salesforce DX MCP Server for your MCP client by updating its associated MCP JSON file; each client is slightly different, so check your MCP client documentation for details. See [MCP Client Configurations](#mcp-client-configurations) for more examples.
|
|
33
33
|
|
|
34
34
|
Here's an example for VS Code with Copilot in which you create and update a `.vscode/mcp.json` file in your project:
|
|
35
35
|
|
|
36
|
-
```
|
|
36
|
+
```json
|
|
37
37
|
{
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
38
|
+
"servers": {
|
|
39
|
+
"Salesforce DX": {
|
|
40
|
+
"command": "npx",
|
|
41
|
+
"args": ["-y", "@salesforce/mcp",
|
|
42
|
+
"--orgs", "DEFAULT_TARGET_ORG",
|
|
43
|
+
"--toolsets", "orgs,metadata,data,users",
|
|
44
|
+
"--tools", "run_apex_test",
|
|
45
|
+
"--allow-non-ga-tools"]
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
48
|
}
|
|
49
49
|
```
|
|
50
50
|
|
|
51
|
-
The `args` format shown in the preceding example is the same for all MCP clients; it's how you customize the DX MCP Server for your particular environment.
|
|
51
|
+
The `args` format shown in the preceding example is the same for all MCP clients; it's how you customize the DX MCP Server for your particular environment.
|
|
52
52
|
|
|
53
53
|
**Notes**:
|
|
54
|
-
|
|
54
|
+
|
|
55
|
+
- The `"-y", "@salesforce/mcp"` part tells `npx` to automatically install the `@salesforce/mcp` package instead of asking permission. Don't change this.
|
|
55
56
|
- For possible flags that you can pass to the `args` option, and the possible values that you can pass to the `--orgs`, `--toolsets`, and `--tools` flags, see these sections:
|
|
56
|
-
- [Available Flags for the `args` Option](
|
|
57
|
-
- [Configure Orgs](
|
|
58
|
-
- [Configure Toolsets](
|
|
59
|
-
- [Configure Tools](
|
|
57
|
+
- [Available Flags for the `args` Option](#available-flags-for-the-args-option)
|
|
58
|
+
- [Configure Orgs](#configure-orgs)
|
|
59
|
+
- [Configure Toolsets](#configure-toolsets)
|
|
60
|
+
- [Configure Tools](#configure-tools)
|
|
60
61
|
- When writing the `args` option, surround both the flag names and their values in double quotes, and separate all flags and values with commas. Some flags are Boolean and don't take a value.
|
|
61
|
-
- The preceding example shows three flags that take a string value (`--orgs`, `--toolsets`, and `--tools`) and one Boolean flag (`--allow-non-ga-tools`).
|
|
62
|
+
- The preceding example shows three flags that take a string value (`--orgs`, `--toolsets`, and `--tools`) and one Boolean flag (`--allow-non-ga-tools`). This configuration starts a DX MCP Server that enables all the MCP tools in the `orgs`, `metadata`, `data`, and `users` toolsets and a specific tool called `run_apex_tests`. It also enables tools in these configured toolsets that aren't yet generally available.
|
|
62
63
|
|
|
63
|
-
## MCP Client Configurations
|
|
64
|
+
## MCP Client Configurations
|
|
64
65
|
|
|
65
|
-
Here are examples of configuring the Salesforce DX MCP Server in various MCP clients.
|
|
66
|
+
Here are examples of configuring the Salesforce DX MCP Server in various MCP clients.
|
|
66
67
|
|
|
67
68
|
### Claude Code
|
|
68
69
|
|
|
69
70
|
To configure [Claude Code](https://www.claude.com/product/claude-code) to work with Salesforce DX MCP Server, add this snippet to the `.mcp.json` file in your project:
|
|
70
|
-
|
|
71
|
+
|
|
72
|
+
```json
|
|
71
73
|
{
|
|
72
74
|
"mcpServers": {
|
|
73
75
|
"Salesforce DX": {
|
|
@@ -76,43 +78,45 @@ To configure [Claude Code](https://www.claude.com/product/claude-code) to work w
|
|
|
76
78
|
"--orgs", "DEFAULT_TARGET_ORG",
|
|
77
79
|
"--toolsets", "orgs,metadata,data,users",
|
|
78
80
|
"--tools", "run_apex_test",
|
|
79
|
-
"--allow-non-ga-tools"
|
|
81
|
+
"--allow-non-ga-tools"]
|
|
80
82
|
}
|
|
81
83
|
}
|
|
82
84
|
}
|
|
83
85
|
```
|
|
84
|
-
### Cursor
|
|
85
86
|
|
|
86
|
-
|
|
87
|
+
### Cline
|
|
88
|
+
|
|
89
|
+
To configure [Cline](https://docs.cline.bot/mcp/mcp-overview) to work with Salesforce DX MCP Server, add this snippet to your Cline `cline_mcp_settings.json` file:
|
|
87
90
|
|
|
88
91
|
```json
|
|
89
92
|
{
|
|
90
93
|
"mcpServers": {
|
|
91
94
|
"Salesforce DX": {
|
|
92
95
|
"command": "npx",
|
|
93
|
-
"args": ["-y", "@salesforce/mcp@latest",
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
96
|
+
"args": ["-y", "@salesforce/mcp@latest",
|
|
97
|
+
"--orgs", "DEFAULT_TARGET_ORG",
|
|
98
|
+
"--toolsets", "orgs,metadata,data,users",
|
|
99
|
+
"--tools", "run_apex_test",
|
|
100
|
+
"--allow-non-ga-tools"]
|
|
98
101
|
}
|
|
99
102
|
}
|
|
100
103
|
}
|
|
101
104
|
```
|
|
102
105
|
|
|
103
|
-
###
|
|
106
|
+
### Cursor
|
|
107
|
+
|
|
108
|
+
To configure [Cursor](https://cursor.com/docs/context/mcp) to work with Salesforce DX MCP Server, add this snippet to your Cursor `mcp.json` file:
|
|
104
109
|
|
|
105
|
-
To configure [Cline](https://docs.cline.bot/mcp/mcp-overview) to work with Salesforce DX MCP Server, add this snippet to your Cline `cline_mcp_settings.json` file:
|
|
106
110
|
```json
|
|
107
111
|
{
|
|
108
112
|
"mcpServers": {
|
|
109
113
|
"Salesforce DX": {
|
|
110
114
|
"command": "npx",
|
|
111
|
-
"args": ["-y", "@salesforce/mcp@latest",
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
115
|
+
"args": ["-y", "@salesforce/mcp@latest",
|
|
116
|
+
"--orgs", "DEFAULT_TARGET_ORG",
|
|
117
|
+
"--toolsets", "orgs,metadata,data,users",
|
|
118
|
+
"--tools", "run_apex_test",
|
|
119
|
+
"--allow-non-ga-tools"]
|
|
116
120
|
}
|
|
117
121
|
}
|
|
118
122
|
}
|
|
@@ -122,23 +126,23 @@ To configure [Cline](https://docs.cline.bot/mcp/mcp-overview) to work with Sales
|
|
|
122
126
|
|
|
123
127
|
For these other clients, refer to their documentation for adding MCP servers and follow the same pattern as in the preceding examples to configure the Salesforce DX MCP Server:
|
|
124
128
|
|
|
129
|
+
- [Trae](https://docs.trae.ai/ide/model-context-protocol?_lang=en)
|
|
125
130
|
- [Windsurf](https://docs.windsurf.com/windsurf/cascade/mcp)
|
|
126
131
|
- [Zed](https://github.com/zed-industries/zed)
|
|
127
|
-
- [Trae](https://docs.trae.ai/ide/model-context-protocol?_lang=en)
|
|
128
132
|
|
|
129
133
|
## Available Flags for the "args" Option
|
|
130
134
|
|
|
131
|
-
These are the flags that you can pass to the `args` option.
|
|
135
|
+
These are the flags that you can pass to the `args` option.
|
|
132
136
|
|
|
133
|
-
| Flag Name
|
|
134
|
-
|
|
|
135
|
-
| `--
|
|
136
|
-
| `--
|
|
137
|
-
| `--tools`
|
|
138
|
-
| `--no-telemetry`
|
|
139
|
-
| `--
|
|
140
|
-
| `--
|
|
141
|
-
| `--
|
|
137
|
+
| Flag Name | Description | Required? | Notes |
|
|
138
|
+
| ---------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
|
139
|
+
| `--allow-non-ga-tools` | Boolean flag to allow the DX MCP Server to use both the generally available (GA) and NON-GA tools that are in the toolsets or tools you specify. | No | By default, the DX MCP server uses only the tools marked GA. |
|
|
140
|
+
| `--debug` | Boolean flag that requests that the DX MCP Server print debug logs. | No | Debug mode is disabled by default. <br/> <br/>**NOTE:** Not all MCP clients expose MCP logs, so this flag might not work for all IDEs. |
|
|
141
|
+
| `--dynamic-tools` | (experimental) Boolean flag that enables dynamic tool discovery and loading. When specified, the DX MCP server starts with a minimal set of core tools and loads new tools as needed. | No | This flag is useful for reducing the initial context size and improving LLM performance. Dynamic tool discovery is disabled by default.<br/> <br/>**NOTE:** This feature works in VSCode and Cline but may not work in other environments. |
|
|
142
|
+
| `--no-telemetry` | Boolean flag to disable telemetry, the automatic collection of data for monitoring and analysis. | No | Telemetry is enabled by default, so specify this flag to disable it. |
|
|
143
|
+
| `--orgs` | One or more orgs that you've locally authorized. | Yes | You must specify at least one org. <br/> <br/>See [Configure Orgs](#configure-orgs) for the values you can pass to this flag. |
|
|
144
|
+
| `--tools` | Individual tool names that you want to enable. | No | You can use this flag in combination with the `--toolsets` flag. For example, you can enable all tools in one toolset, and just one tool in a different toolset. |
|
|
145
|
+
| `--toolsets` | Sets of tools, based on functionality, that you want to enable. | No | Set to "all" to enable every tool in every toolset. <br/> <br/>See [Configure Toolsets](#configure-toolsets) for the values you can pass to this flag. |
|
|
142
146
|
|
|
143
147
|
## Configure Orgs
|
|
144
148
|
|
|
@@ -148,36 +152,38 @@ You must explicitly [authorize the orgs](https://developer.salesforce.com/docs/a
|
|
|
148
152
|
|
|
149
153
|
These are the available values for the `--orgs` flag:
|
|
150
154
|
|
|
151
|
-
| --orgs Value
|
|
152
|
-
|
|
|
153
|
-
| `
|
|
154
|
-
| `DEFAULT_TARGET_DEV_HUB` | Allow access to your default Dev Hub org. If you've set a local default Dev Hub org in your DX project, the MCP server uses it. If not, the server uses a globally-set default Dev Hub org
|
|
155
|
-
| `
|
|
156
|
-
| `<username or alias>`
|
|
155
|
+
| --orgs Value | Description |
|
|
156
|
+
| ------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
157
|
+
| `ALLOW_ALL_ORGS` | Allow access to all authorized orgs. Use this value with caution. |
|
|
158
|
+
| `DEFAULT_TARGET_DEV_HUB` | Allow access to your default Dev Hub org. If you've set a local default Dev Hub org in your DX project, the MCP server uses it. If not, the server uses a globally-set default Dev Hub org. |
|
|
159
|
+
| `DEFAULT_TARGET_ORG` | Allow access to your default org. If you've set a local default org in your DX project, the MCP server uses it. If not, the server uses a globally-set default org. |
|
|
160
|
+
| `<username or alias>` | Allow access to a specific org by specifying its username or alias. |
|
|
157
161
|
|
|
158
162
|
## Configure Toolsets
|
|
159
163
|
|
|
160
|
-
The Salesforce DX MCP Server supports **toolsets
|
|
164
|
+
The Salesforce DX MCP Server supports **toolsets**—a way to selectively enable different groups of MCP tools based on your needs. This allows you to run the MCP server with only the tools you require, which in turn reduces the LLM context.
|
|
161
165
|
|
|
162
|
-
Use the `--toolsets` flag to specify the toolsets when you configure the Salesforce DX MCP Server. Separate multiple toolsets with commas.
|
|
166
|
+
Use the `--toolsets` flag to specify the toolsets when you configure the Salesforce DX MCP Server. Separate multiple toolsets with commas.
|
|
163
167
|
|
|
164
168
|
These are the available toolsets.
|
|
165
169
|
|
|
166
|
-
| Toolset| Description|
|
|
167
|
-
|
|
|
168
|
-
| `all`
|
|
169
|
-
| `aura-experts`
|
|
170
|
-
| `code-analysis`
|
|
171
|
-
| `
|
|
172
|
-
| `
|
|
173
|
-
| `
|
|
174
|
-
| `
|
|
175
|
-
| `
|
|
176
|
-
| `
|
|
177
|
-
| `
|
|
178
|
-
| `
|
|
179
|
-
| `
|
|
180
|
-
| `
|
|
170
|
+
| Toolset | Description | See Tool List |
|
|
171
|
+
| ---------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------- |
|
|
172
|
+
| `all` | Enables all available tools from all toolsets. <br>We recommend that you configure only the toolsets you’re going to use, rather than all of them with this value. The DX MCP Server includes over 60 MCP tools, so enabling them all in your MCP client can overwhelm the LLM context. | N/A |
|
|
173
|
+
| `aura-experts` | Tools that provide Aura component analysis, blueprinting, and migration expertise.. | [Link](#aura-experts-toolset) |
|
|
174
|
+
| `code-analysis` | Tools for static analysis of your code using Salesforce Code Analyzer. | [Link](#code-analysis-toolset) |
|
|
175
|
+
| `core` | Core set of DX MCP tools. This toolset is always enabled. | [Link](#core-toolset-always-enabled) |
|
|
176
|
+
| `data` | Tools to manage the data in your org, such as listing all accounts. | [Link](#data-toolset) |
|
|
177
|
+
| `devops` | Tools to securely and autonomously read, manage, and operate DevOps Center resources. | [Link](#devops-center-toolset) |
|
|
178
|
+
| `enrich_metadata`| Tools to Enrich metadata components in your DX project. | [Link](#enrichment-toolset) |
|
|
179
|
+
| `lwc-experts` | Tools to assist with Lightning Web Component (LWC) development, testing, optimization, and best practices. | [Link](#lightning-web-components-lwc-experts-toolset) |
|
|
180
|
+
| `metadata` | Tools to deploy and retrieve metadata to and from your org and your DX project. | [Link](#metadata-toolset) |
|
|
181
|
+
| `mobile` | Tools for mobile development and capabilities. | [Link](#mobile-toolset) |
|
|
182
|
+
| `mobile-core` | A subset of tools from the `mobile` toolset focused on essential mobile capabilities. | [Link](#mobile-core-toolset) |
|
|
183
|
+
| `orgs` | Tools to manage your authorized orgs. | [Link](#orgs-toolset) |
|
|
184
|
+
| `scale-products` | Tools for detecting and fixing Apex performance. | [Link](#scale-products-toolset) |
|
|
185
|
+
| `testing` | Tools to test your code and features. | [Link](#testing-toolset) |
|
|
186
|
+
| `users` | Tools to manage org users, such as assigning a permission set. | [Link](#users-toolset) |
|
|
181
187
|
|
|
182
188
|
## Configure Tools
|
|
183
189
|
|
|
@@ -185,136 +191,167 @@ The Salesforce DX MCP Server also supports registering individual **tools**. Thi
|
|
|
185
191
|
|
|
186
192
|
Use the `--tools` flag to enable specific tools when you configure the Salesforce DX MCP Server. Separate multiple tools with commas. The `--tools` flag is optional.
|
|
187
193
|
|
|
188
|
-
The following sections list all the tools that are included in a specific toolset.
|
|
189
|
-
|
|
190
|
-
### Core Toolset (always enabled)
|
|
191
|
-
|
|
192
|
-
- `get_username` - Determines the appropriate username or alias for Salesforce operations, handling both default orgs and Dev Hubs.
|
|
193
|
-
- `resume_tool_operation` - Resumes a long-running operation that wasn't completed by another tool.
|
|
194
|
-
|
|
195
|
-
### Orgs Toolset
|
|
194
|
+
The following sections list all the tools that are included in a specific toolset.
|
|
196
195
|
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
- `create_scratch_org` - (NON-GA) Create a scratch org.
|
|
200
|
-
- `delete_org` - (NON-GA) Delete a locally-authorized Salesforce scratch org or sandbox.
|
|
201
|
-
- `open_org` - (NON-GA) Open an org in a browser.
|
|
196
|
+
> [!NOTE]
|
|
197
|
+
> The tools marked NON-GA are not yet generally available. Specify the `--allow-non-ga-tools` flag to use them.
|
|
202
198
|
|
|
203
|
-
|
|
199
|
+
### Aura Experts Toolset
|
|
204
200
|
|
|
205
|
-
|
|
201
|
+
For complete documentation, see [Use the Aura-to-LWC Migration Tools](https://developer.salesforce.com/docs/platform/lwc/guide/mcp-aura.html) in the _Lightning Web Components Developer Guide_.
|
|
206
202
|
|
|
207
|
-
- `
|
|
203
|
+
- `create_aura_blueprint_draft` (GA) - Creates a comprehensive Product Requirements Document (PRD) blueprint for Aura component migration. Analyzes Aura component files and generates framework-agnostic specifications suitable for LWC migration, including business requirements, technical patterns, and migration guidelines.
|
|
204
|
+
- `enhance_aura_blueprint_draft` (GA) - Enhances an existing draft PRD with expert analysis and unknown resolution. Takes a draft blueprint and applies specialized Aura expert knowledge to resolve dependencies, add technical insights, and improve the migration specifications for better LWC implementation guidance.
|
|
205
|
+
- `orchestrate_aura_migration` (GA) - Orchestrates the complete Aura to LWC migration workflow. Provides end-to-end guidance for the entire migration process, from initial analysis through final implementation, including best practices, tooling recommendations, and quality assurance steps.
|
|
206
|
+
- `transition_prd_to_lwc` (GA) - Provides migration bridge guidance for creating LWC components from Aura specifications. Takes the enhanced PRD and generates specific implementation guidance, platform service mappings, and step-by-step instructions for building the equivalent LWC component.
|
|
208
207
|
|
|
209
|
-
###
|
|
208
|
+
### Code Analysis Toolset
|
|
210
209
|
|
|
211
|
-
|
|
210
|
+
For complete documentation, see [Use MCP Tools to Analyze Your Code ](https://developer.salesforce.com/docs/platform/salesforce-code-analyzer/guide/mcp.html) in the _Salesforce Code Analyzer Developer Guide_.
|
|
212
211
|
|
|
213
|
-
|
|
212
|
+
- `describe_code_analyzer_rule` (GA) - A tool for getting the description of a Code Analyzer rule.
|
|
213
|
+
- `list_code_analyzer_rules` (GA) - A tool for selecting Code Analyzer rules based on a number of criteria.
|
|
214
|
+
- `query_code_analyzer_results` (GA) - Queries a Code Analyzer results JSON file and returns filtered violations. Supports filters such as severity, category/tag, engine, rule, and file name, plus top-N and sorting. Use this after running `run_code_analyzer` to read the generated results file. After completion, this tool will summarize and explain the filtered results to the user.
|
|
215
|
+
- `run_code_analyzer` (GA) - A tool for performing static analysis against code. This tool can validate that code conforms to best practices, check for security vulnerabilities, and identify possible performance issues. It returns a JSON containing the absolute path to a results file if such a file was created and a string indicating the overall success or failure of the operation.
|
|
214
216
|
|
|
215
|
-
|
|
216
|
-
- `retrieve_metadata` - Retrieves metadata from your org to your DX project.
|
|
217
|
+
### Core Toolset (always enabled)
|
|
217
218
|
|
|
218
|
-
|
|
219
|
+
For sample prompts that invoke the core DX MCP tools, see [Use the Core Salesforce DX MCP Tools](https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_dev_mcp_use_core_tools.htm) in the _Salesforce DX Developer Guide_.
|
|
219
220
|
|
|
220
|
-
- `
|
|
221
|
-
- `
|
|
221
|
+
- `get_username` (GA) - Determines the appropriate username or alias for Salesforce operations, handling both default orgs and Dev Hubs.
|
|
222
|
+
- `resume_tool_operation` (GA) - Resumes a long-running operation that wasn't completed by another tool.
|
|
222
223
|
|
|
223
|
-
###
|
|
224
|
+
### Data Toolset
|
|
224
225
|
|
|
225
|
-
|
|
226
|
-
- `create_mobile_lwc_ar_space_capture` - Provides TypeScript API documentation for Salesforce L WC AR Space Capture, offering expert guidance for implementing AR space capture features in Lightning Web Components.
|
|
227
|
-
- `create_mobile_lwc_barcode_scanner` - Provides TypeScript API documentation for Salesforce LWC Barcode Scanner, offering expert guidance for implementing barcode scanning features in Lightning Web Components.
|
|
228
|
-
- `create_mobile_lwc_biometrics` - Provides TypeScript API documentation for Salesforce LWC Biometrics Service, offering expert guidance for implementing biometric authentication features in Lightning Web Components.
|
|
229
|
-
- `create_mobile_lwc_calendar` - Provides TypeScript API documentation for Salesforce LWC Calendar Service, offering expert guidance for implementing calendar integration features in Lightning Web Components.
|
|
230
|
-
- `create_mobile_lwc_contacts` - Provides TypeScript API documentation for Salesforce LWC Contacts Service, offering expert guidance for implementing contacts management features in Lightning Web Components.
|
|
231
|
-
- `create_mobile_lwc_document_scanner` - Provides TypeScript API documentation for Salesforce LWC Document Scanner, offering expert guidance for implementing document scanning features in Lightning Web Components.
|
|
232
|
-
- `create_mobile_lwc_geofencing` - Provides TypeScript API documentation for Salesforce LWC Geofencing Service, offering expert guidance for implementing geofencing features in Lightning Web Components.
|
|
233
|
-
- `create_mobile_lwc_location` - Provides TypeScript API documentation for Salesforce LWC Location Service, offering expert guidance for implementing location services in Lightning Web Components.
|
|
234
|
-
- `create_mobile_lwc_nfc` - Provides TypeScript API documentation for Salesforce LWC NFC Service, offering expert guidance for implementing NFC features in Lightning Web Components.
|
|
235
|
-
- `create_mobile_lwc_payments` - Provides TypeScript API documentation for Salesforce LWC Payments Service, offering expert guidance for implementing payment processing features in Lightning Web Components.
|
|
236
|
-
- `get_mobile_lwc_offline_analysis` - Analyzes Lightning Web Components for mobile-specific issues and provides detailed recommendations for mobile offline compatibility and performance improvements.
|
|
237
|
-
- `get_mobile_lwc_offline_guidance` - Provides structured review instructions to detect and remediate mobile offline code violations in Lightning Web Components for Salesforce Mobile Apps.
|
|
226
|
+
For sample prompts that invoke the core DX MCP tools, see [Use the Core Salesforce DX MCP Tools](https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_dev_mcp_use_core_tools.htm) in the _Salesforce DX Developer Guide_.
|
|
238
227
|
|
|
239
|
-
|
|
228
|
+
- `run_soql_query` (GA) - Runs a SOQL query against a Salesforce org.
|
|
240
229
|
|
|
241
|
-
|
|
242
|
-
- `create_mobile_lwc_biometrics` - Provides TypeScript API documentation for Salesforce LWC Biometrics Service, offering expert guidance for implementing biometric authentication features in Lightning Web Components.
|
|
243
|
-
- `create_mobile_lwc_location` - Provides TypeScript API documentation for Salesforce LWC Location Service, offering expert guidance for implementing location services in Lightning Web Components.
|
|
244
|
-
- `get_mobile_lwc_offline_analysis` - Analyzes Lightning Web Components for mobile-specific issues and provides detailed recommendations for mobile offline compatibility and performance improvements.
|
|
245
|
-
- `get_mobile_lwc_offline_guidance` - Provides structured review instructions to detect and remediate mobile offline code violations in Lightning Web Components for Salesforce Mobile Apps.
|
|
230
|
+
### DevOps Center Toolset
|
|
246
231
|
|
|
247
|
-
|
|
232
|
+
For complete documentation, see [Merge Conflict Resolution with DevOps Center MCP Tools (Managed Package)](https://help.salesforce.com/s/articleView?id=platform.devops_center_mcp_intro.htm&type=5) in Salesforce Help.
|
|
248
233
|
|
|
249
|
-
|
|
250
|
-
|
|
234
|
+
- `check_devops_center_commit_status` (NON-GA) - Check the current status of a work item committed to DevOps Center.
|
|
235
|
+
- `checkout_devops_center_work_item` (NON-GA) - Checks out the branch associated with a selected work item by name.
|
|
236
|
+
- `commit_devops_center_work_item` (NON-GA) - Commit SFDX project changes and register the commit SHA in DevOps Center.
|
|
237
|
+
- `create_devops_center_pull_request` (NON-GA) - Commit local changes to a DevOps Center work item’s feature branch.
|
|
238
|
+
- `detect_devops_center_merge_conflict` (GA) - Detects merge conflicts for a selected work item or in a given source branch.
|
|
239
|
+
- `list_devops_center_projects` (NON-GA) - List all DevOps Center projects in a specific org.
|
|
240
|
+
- `list_devops_center_work_items` (NON-GA) - List all the work items for a specific DevOps Center project.
|
|
241
|
+
- `promote_devops_center_work_item` (NON-GA) - Promote an approved work item to the next stage in the DevOps Center pipeline.
|
|
242
|
+
- `resolve_devops_center_merge_conflict` (GA) - Apply a selected resolution method to a merge conflict.
|
|
251
243
|
|
|
252
|
-
|
|
253
|
-
Enhances an existing draft PRD with expert analysis and unknown resolution. Takes a draft blueprint and applies specialized Aura expert knowledge to resolve dependencies, add technical insights, and improve the migration specifications for better LWC implementation guidance.
|
|
244
|
+
### Enrichment Toolset
|
|
254
245
|
|
|
255
|
-
|
|
256
|
-
Provides migration bridge guidance for creating LWC components from Aura specifications. Takes the enhanced PRD and generates specific implementation guidance, platform service mappings, and step-by-step instructions for building the equivalent LWC component.
|
|
246
|
+
- `enrich_metadata` (NON-GA) - Enrich metadata from your org in your DX project.
|
|
257
247
|
|
|
258
|
-
|
|
259
|
-
Orchestrates the complete Aura to LWC migration workflow. Provides end-to-end guidance for the entire migration process, from initial analysis through final implementation, including best practices, tooling recommendations, and quality assurance steps.
|
|
248
|
+
### Lightning Web Components (LWC) Experts Toolset
|
|
260
249
|
|
|
261
|
-
|
|
250
|
+
For complete documentation, see [Use DX MCP Tools for LWC](https://developer.salesforce.com/docs/platform/lwc/guide/mcp-intro.html) in the _Lightning Web Components Developer Guide_.
|
|
262
251
|
|
|
263
252
|
#### Component Development
|
|
264
253
|
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
254
|
+
- `create_lwc_component_from_prd` (GA) - Creates complete LWC components from PRD specifications with proper structure. and best practices
|
|
255
|
+
- `create_lwc_jest_tests` (GA) - Generates Jest test suites for LWC components with coverage and mocking.
|
|
256
|
+
- `review_lwc_jest_tests` (GA) - Reviews and validates Jest test implementations for LWC components.
|
|
268
257
|
|
|
269
258
|
#### Development Guidelines
|
|
270
259
|
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
260
|
+
- `create_lightning_type` (GA) - Provides guidance for creating Custom Lightning Types (CLT) for Salesforce applications, agent actions, Lightning web components, and Lightning Platform integrations.
|
|
261
|
+
- `guide_lwc_accessibility` (GA) - Provides accessibility guidelines and testing instructions for LWC components.
|
|
262
|
+
- `guide_lwc_best_practices` (GA) - Offers LWC development best practices and coding standards guidance.
|
|
263
|
+
- `guide_lwc_development` (GA) - Provides LWC development workflow and implementation guidelines.
|
|
264
|
+
- `guide_lwc_rtl_support` (GA) - Provides Right-to-Left (RTL) internationalization support and RTL development guidance.
|
|
265
|
+
- `guide_lwc_slds2_uplift_linter_fixes` (NON-GA) - Analyzes the given LWC code along with the slds-linter output to fix issues using Salesforce Lightning Design System 2 (SLDS 2) guidelines.
|
|
266
|
+
- `guide_lwc_security` (GA) - Provides security analysis in accordance with product security guidelines and Lightning Web Security guidelines.
|
|
267
|
+
- `guide_design_general` (GA) - Provides SLDS guidelines and best practices for Lightning Web Components with accessibility, responsive design, and component usage patterns.
|
|
268
|
+
- `guide_utam_generation` (NON-GA) - Provides UI Test Automation Model (UTAM) Page Object generation guidelines and best practices.
|
|
269
|
+
|
|
270
|
+
#### Lightning Data Service (LDS) Tools
|
|
271
|
+
|
|
272
|
+
- `create_lds_graphql_mutation_query` (GA) - Provides guidance for creating GraphQL mutation queries.
|
|
273
|
+
- `create_lds_graphql_read_query` (GA) - Create GraphQL read queries for LDS.
|
|
274
|
+
- `explore_lds_graphql_schema` (GA) - Explore GraphQL schema structure for LDS.
|
|
275
|
+
- `explore_lds_uiapi` (GA) - Explores and documents Lightning Design System UI API capabilities.
|
|
276
|
+
- `guide_lds_data_consistency` (GA) - Provides data consistency patterns and best practices for LDS components.
|
|
277
|
+
- `guide_lds_development` (GA) - Provides LDS development guidelines and component integration.
|
|
278
|
+
- `guide_lds_graphql` (GA) - Provides LDS GraphQL usage patterns and guidelines.
|
|
279
|
+
- `guide_lds_referential_integrity` (GA) - Provides referential integrity patterns for LDS data management.
|
|
280
|
+
- `orchestrate_lds_data_requirements` (GA) - Provides step-by-step guidance for analyzing and clarifying LDS data requirements to produce PRD-ready specifications.
|
|
281
|
+
|
|
282
|
+
#### Migration & Integration Tools
|
|
283
|
+
|
|
284
|
+
- `guide_figma_to_lwc_conversion` (GA) - Converts Figma designs to LWC component specifications.
|
|
285
|
+
- `run_lwc_accessibility_jest_tests` (GA) - Provides accessibility testing utilities and Jest integration for LWC components.
|
|
286
|
+
- `verify_aura_migration_completeness` (GA) - Provides Aura to LWC migration completeness checklist and validation.
|
|
281
287
|
|
|
282
288
|
#### Workflow Tools
|
|
283
289
|
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
290
|
+
- `orchestrate_lwc_component_creation` (GA) - Provides guidance for the entire Aura-to-LWC migration process.
|
|
291
|
+
- `orchestrate_lwc_component_optimization` (GA) - Provides performance optimization and best practices for LWC components.
|
|
292
|
+
- `orchestrate_lwc_component_testing` (GA) - Provides comprehensive testing workflow and test generation guidance.
|
|
293
|
+
- `orchestrate_lwc_slds2_uplift` (NON-GA) - Provides migration guidance for upgrading to SLDS 2.
|
|
288
294
|
|
|
289
|
-
|
|
295
|
+
### Metadata Toolset
|
|
290
296
|
|
|
291
|
-
|
|
292
|
-
- `guide_lds_data_consistency` - (GA) Data consistency patterns and best practices for LDS components
|
|
293
|
-
- `guide_lds_development` - (GA) LDS development guidelines and component integration
|
|
294
|
-
- `guide_lds_referential_integrity` - (GA) Referential integrity patterns for LDS data management
|
|
295
|
-
- `orchestrate_lds_data_requirements` - (GA) Step-by-step guidance for analyzing and clarifying LDS data requirements to produce PRD-ready specifications.
|
|
296
|
-
- `create_lds_graphql_read_query` - (GA) Create GraphQL read queries for LDS
|
|
297
|
-
- `explore_lds_graphql_schema` - (GA) Explore GraphQL schema structure for Salesforce LDS
|
|
298
|
-
- `guide_lds_graphql` - (GA) LDS GraphQL usage patterns and guidelines
|
|
299
|
-
- `create_lds_graphql_mutation_query` - (GA) Comprehensive guidance text for creating GraphQL mutation queries.
|
|
297
|
+
For sample prompts that invoke the core DX MCP tools, see [Use the Core Salesforce DX MCP Tools](https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_dev_mcp_use_core_tools.htm) in the _Salesforce DX Developer Guide_.
|
|
300
298
|
|
|
301
|
-
|
|
299
|
+
- `deploy_metadata` (GA) - Deploys metadata from your DX project to an org.
|
|
300
|
+
- `retrieve_metadata` (GA) - Retrieves metadata from your org to your DX project.
|
|
301
|
+
|
|
302
|
+
### Mobile Toolset
|
|
303
|
+
|
|
304
|
+
For complete documentation, see [Use the mobile Toolset](https://developer.salesforce.com/docs/atlas.en-us.mobile_offline.meta/mobile_offline/dx_mobile_mcp_toolset_mobile.htm) in the _Mobile and Offline Developer Guide_.
|
|
305
|
+
|
|
306
|
+
- `create_mobile_lwc_app_review` (GA) - Provides TypeScript API documentation for Salesforce LWC App Review Service, offering expert guidance for implementing app review features in LWC components.
|
|
307
|
+
- `create_mobile_lwc_ar_space_capture` (GA) - Provides TypeScript API documentation for Salesforce LWC AR Space Capture, offering expert guidance for implementing AR space capture features in LWC components.
|
|
308
|
+
- `create_mobile_lwc_barcode_scanner` (GA) - Provides TypeScript API documentation for Salesforce LWC Barcode Scanner, offering expert guidance for implementing barcode scanning features in LWC components.
|
|
309
|
+
- `create_mobile_lwc_biometrics` (GA) - Provides TypeScript API documentation for Salesforce LWC Biometrics Service, offering expert guidance for implementing biometric authentication features in LWC components.
|
|
310
|
+
- `create_mobile_lwc_calendar` (GA) - Provides TypeScript API documentation for Salesforce LWC Calendar Service, offering expert guidance for implementing calendar integration features in LWC components.
|
|
311
|
+
- `create_mobile_lwc_contacts` (GA) - Provides TypeScript API documentation for Salesforce LWC Contacts Service, offering expert guidance for implementing contacts management features in LWC components.
|
|
312
|
+
- `create_mobile_lwc_document_scanner` (GA) - Provides TypeScript API documentation for Salesforce LWC Document Scanner, offering expert guidance for implementing document scanning features in LWC components.
|
|
313
|
+
- `create_mobile_lwc_geofencing` (GA) - Provides TypeScript API documentation for Salesforce LWC Geofencing Service, offering expert guidance for implementing geofencing features in LWC components.
|
|
314
|
+
- `create_mobile_lwc_location` (GA) - Provides TypeScript API documentation for Salesforce LWC Location Service, offering expert guidance for implementing location services in LWC components.
|
|
315
|
+
- `create_mobile_lwc_nfc` (GA) - Provides TypeScript API documentation for Salesforce LWC NFC Service, offering expert guidance for implementing NFC features in LWC components.
|
|
316
|
+
- `create_mobile_lwc_payments` - Provides TypeScript API documentation for Salesforce LWC Payments Service, offering expert guidance for implementing payment processing features in LWC components.
|
|
317
|
+
- `get_mobile_lwc_offline_analysis` (GA) - Analyzes LWC components for mobile-specific issues and provides detailed recommendations for mobile offline compatibility and performance improvements.
|
|
318
|
+
- `get_mobile_lwc_offline_guidance` (GA) - Provides structured review instructions to detect and remediate mobile offline code violations in LWC components for Salesforce mobile apps.
|
|
319
|
+
|
|
320
|
+
### Mobile-core Toolset
|
|
321
|
+
|
|
322
|
+
For complete documentation, see [Use the mobile-core Toolset](https://developer.salesforce.com/docs/atlas.en-us.mobile_offline.meta/mobile_offline/dx_mobile_mcp_toolset_core.htm) in the _Mobile and Offline Developer Guide_.
|
|
323
|
+
|
|
324
|
+
- `create_mobile_lwc_barcode_scanner` (GA) - Provides TypeScript API documentation for Salesforce LWC Barcode Scanner, offering expert guidance for implementing barcode scanning features in LWC components.
|
|
325
|
+
- `create_mobile_lwc_biometrics` (GA) - Provides TypeScript API documentation for Salesforce LWC Biometrics Service, offering expert guidance for implementing biometric authentication features in LWC components.
|
|
326
|
+
- `create_mobile_lwc_location` (GA) - Provides TypeScript API documentation for Salesforce LWC Location Service, offering expert guidance for implementing location services in LWC components.
|
|
327
|
+
- `get_mobile_lwc_offline_analysis` (GA) - Analyzes LWC components for mobile-specific issues and provides detailed recommendations for mobile offline compatibility and performance improvements.
|
|
328
|
+
- `get_mobile_lwc_offline_guidance` (GA) - Provides structured review instructions to detect and remediate mobile offline code violations in LWC components for Salesforce mobile apps.
|
|
302
329
|
|
|
303
|
-
|
|
304
|
-
- `guide_figma_to_lwc_conversion` - (GA) Converts Figma designs to LWC component specifications
|
|
305
|
-
- `run_lwc_accessibility_jest_tests` - (GA) Accessibility testing utilities and Jest integration for LWC components
|
|
330
|
+
### Orgs Toolset
|
|
306
331
|
|
|
307
|
-
|
|
332
|
+
For sample prompts that invoke the core DX MCP tools, see [Use the Core Salesforce DX MCP Tools](https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_dev_mcp_use_core_tools.htm) in the _Salesforce DX Developer Guide_.
|
|
308
333
|
|
|
309
|
-
- `
|
|
310
|
-
- `
|
|
334
|
+
- `create_org_snapshot` (NON-GA) - Create a scratch org snapshot.
|
|
335
|
+
- `create_scratch_org` (NON-GA) - Create a scratch org.
|
|
336
|
+
- `delete_org` (NON-GA) - Delete a locally-authorized Salesforce scratch org or sandbox.
|
|
337
|
+
- `list_all_orgs` (GA) - List all configured Salesforce orgs, with optional connection status checking.
|
|
338
|
+
- `open_org` (NON-GA) - Open an org in a browser.
|
|
311
339
|
|
|
312
340
|
### Scale Products Toolset
|
|
313
341
|
|
|
314
|
-
|
|
342
|
+
For complete documentation, see the [README](./packages/mcp-provider-scale-products/README.md) in the `mcp-provider-scale-products` subdirectory.
|
|
315
343
|
|
|
316
|
-
|
|
344
|
+
- `scan_apex_class_for_antipatterns` - (GA) Analyzes Apex class files for performance antipatterns and provides recommendations for fixing them.
|
|
345
|
+
|
|
346
|
+
### Testing Toolset
|
|
347
|
+
|
|
348
|
+
For sample prompts that invoke the core DX MCP tools, see [Use the Core Salesforce DX MCP Tools](https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_dev_mcp_use_core_tools.htm) in the _Salesforce DX Developer Guide_.
|
|
349
|
+
|
|
350
|
+
- `run_agent_test` (GA) - Executes agent tests in your org.
|
|
351
|
+
- `run_apex_test` (GA) - Executes Apex tests in your org.
|
|
352
|
+
|
|
353
|
+
### Users Toolset
|
|
317
354
|
|
|
318
|
-
|
|
355
|
+
For sample prompts that invoke the core DX MCP tools, see [Use the Core Salesforce DX MCP Tools](https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_dev_mcp_use_core_tools.htm) in the _Salesforce DX Developer Guide_.
|
|
319
356
|
|
|
320
|
-
|
|
357
|
+
- `assign_permission_set` (GA) - Assigns a permission set to the user or on behalf of another user.
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/mcp",
|
|
3
|
-
"version": "0.26.
|
|
3
|
+
"version": "0.26.6",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/mcp",
|
|
9
|
-
"version": "0.26.
|
|
9
|
+
"version": "0.26.6",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@modelcontextprotocol/sdk": "^1.18.0",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"@salesforce/mcp-provider-aura-experts": "0.3.6",
|
|
20
20
|
"@salesforce/mcp-provider-code-analyzer": "0.5.2",
|
|
21
21
|
"@salesforce/mcp-provider-devops": "0.1.9",
|
|
22
|
-
"@salesforce/mcp-provider-dx-core": "0.
|
|
22
|
+
"@salesforce/mcp-provider-dx-core": "0.8.0",
|
|
23
23
|
"@salesforce/mcp-provider-lwc-experts": "0.6.5",
|
|
24
24
|
"@salesforce/mcp-provider-metadata-enrichment": "0.0.4",
|
|
25
25
|
"@salesforce/mcp-provider-mobile-web": "0.2.2",
|
|
@@ -313,9 +313,9 @@
|
|
|
313
313
|
}
|
|
314
314
|
},
|
|
315
315
|
"node_modules/@aws-sdk/client-cloudfront": {
|
|
316
|
-
"version": "3.
|
|
317
|
-
"resolved": "https://registry.npmjs.org/@aws-sdk/client-cloudfront/-/client-cloudfront-3.
|
|
318
|
-
"integrity": "sha512-
|
|
316
|
+
"version": "3.994.0",
|
|
317
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/client-cloudfront/-/client-cloudfront-3.994.0.tgz",
|
|
318
|
+
"integrity": "sha512-43NqYL+JjPY38qVc1rjVQna3FNEO484AkQXAqBJByI7PIzURtrtSWv42PstI99t/GnGlZFikf72y+iclvz32pQ==",
|
|
319
319
|
"dev": true,
|
|
320
320
|
"license": "Apache-2.0",
|
|
321
321
|
"dependencies": {
|
|
@@ -329,7 +329,7 @@
|
|
|
329
329
|
"@aws-sdk/middleware-user-agent": "^3.972.11",
|
|
330
330
|
"@aws-sdk/region-config-resolver": "^3.972.3",
|
|
331
331
|
"@aws-sdk/types": "^3.973.1",
|
|
332
|
-
"@aws-sdk/util-endpoints": "3.
|
|
332
|
+
"@aws-sdk/util-endpoints": "3.994.0",
|
|
333
333
|
"@aws-sdk/util-user-agent-browser": "^3.972.3",
|
|
334
334
|
"@aws-sdk/util-user-agent-node": "^3.972.9",
|
|
335
335
|
"@smithy/config-resolver": "^4.4.6",
|
|
@@ -366,9 +366,9 @@
|
|
|
366
366
|
}
|
|
367
367
|
},
|
|
368
368
|
"node_modules/@aws-sdk/client-s3": {
|
|
369
|
-
"version": "3.
|
|
370
|
-
"resolved": "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.
|
|
371
|
-
"integrity": "sha512-
|
|
369
|
+
"version": "3.994.0",
|
|
370
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.994.0.tgz",
|
|
371
|
+
"integrity": "sha512-zIVQt/XfE2zTFrcPEf8R+KRaRD1++XHMPRhxXM2kVA6NA6Aq/cFCUyYOYYwSbWLF/XeToaX1auYGn3IoZKruPQ==",
|
|
372
372
|
"dev": true,
|
|
373
373
|
"license": "Apache-2.0",
|
|
374
374
|
"dependencies": {
|
|
@@ -388,9 +388,9 @@
|
|
|
388
388
|
"@aws-sdk/middleware-ssec": "^3.972.3",
|
|
389
389
|
"@aws-sdk/middleware-user-agent": "^3.972.11",
|
|
390
390
|
"@aws-sdk/region-config-resolver": "^3.972.3",
|
|
391
|
-
"@aws-sdk/signature-v4-multi-region": "3.
|
|
391
|
+
"@aws-sdk/signature-v4-multi-region": "3.994.0",
|
|
392
392
|
"@aws-sdk/types": "^3.973.1",
|
|
393
|
-
"@aws-sdk/util-endpoints": "3.
|
|
393
|
+
"@aws-sdk/util-endpoints": "3.994.0",
|
|
394
394
|
"@aws-sdk/util-user-agent-browser": "^3.972.3",
|
|
395
395
|
"@aws-sdk/util-user-agent-node": "^3.972.9",
|
|
396
396
|
"@smithy/config-resolver": "^4.4.6",
|
|
@@ -482,6 +482,23 @@
|
|
|
482
482
|
"node": ">=20.0.0"
|
|
483
483
|
}
|
|
484
484
|
},
|
|
485
|
+
"node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints": {
|
|
486
|
+
"version": "3.993.0",
|
|
487
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.993.0.tgz",
|
|
488
|
+
"integrity": "sha512-j6vioBeRZ4eHX4SWGvGPpwGg/xSOcK7f1GL0VM+rdf3ZFTIsUEhCFmD78B+5r2PgztcECSzEfvHQX01k8dPQPw==",
|
|
489
|
+
"dev": true,
|
|
490
|
+
"license": "Apache-2.0",
|
|
491
|
+
"dependencies": {
|
|
492
|
+
"@aws-sdk/types": "^3.973.1",
|
|
493
|
+
"@smithy/types": "^4.12.0",
|
|
494
|
+
"@smithy/url-parser": "^4.2.8",
|
|
495
|
+
"@smithy/util-endpoints": "^3.2.8",
|
|
496
|
+
"tslib": "^2.6.2"
|
|
497
|
+
},
|
|
498
|
+
"engines": {
|
|
499
|
+
"node": ">=20.0.0"
|
|
500
|
+
}
|
|
501
|
+
},
|
|
485
502
|
"node_modules/@aws-sdk/core": {
|
|
486
503
|
"version": "3.973.11",
|
|
487
504
|
"resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.973.11.tgz",
|
|
@@ -871,6 +888,23 @@
|
|
|
871
888
|
"node": ">=20.0.0"
|
|
872
889
|
}
|
|
873
890
|
},
|
|
891
|
+
"node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints": {
|
|
892
|
+
"version": "3.993.0",
|
|
893
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.993.0.tgz",
|
|
894
|
+
"integrity": "sha512-j6vioBeRZ4eHX4SWGvGPpwGg/xSOcK7f1GL0VM+rdf3ZFTIsUEhCFmD78B+5r2PgztcECSzEfvHQX01k8dPQPw==",
|
|
895
|
+
"dev": true,
|
|
896
|
+
"license": "Apache-2.0",
|
|
897
|
+
"dependencies": {
|
|
898
|
+
"@aws-sdk/types": "^3.973.1",
|
|
899
|
+
"@smithy/types": "^4.12.0",
|
|
900
|
+
"@smithy/url-parser": "^4.2.8",
|
|
901
|
+
"@smithy/util-endpoints": "^3.2.8",
|
|
902
|
+
"tslib": "^2.6.2"
|
|
903
|
+
},
|
|
904
|
+
"engines": {
|
|
905
|
+
"node": ">=20.0.0"
|
|
906
|
+
}
|
|
907
|
+
},
|
|
874
908
|
"node_modules/@aws-sdk/nested-clients": {
|
|
875
909
|
"version": "3.993.0",
|
|
876
910
|
"resolved": "https://registry.npmjs.org/@aws-sdk/nested-clients/-/nested-clients-3.993.0.tgz",
|
|
@@ -921,6 +955,23 @@
|
|
|
921
955
|
"node": ">=20.0.0"
|
|
922
956
|
}
|
|
923
957
|
},
|
|
958
|
+
"node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints": {
|
|
959
|
+
"version": "3.993.0",
|
|
960
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.993.0.tgz",
|
|
961
|
+
"integrity": "sha512-j6vioBeRZ4eHX4SWGvGPpwGg/xSOcK7f1GL0VM+rdf3ZFTIsUEhCFmD78B+5r2PgztcECSzEfvHQX01k8dPQPw==",
|
|
962
|
+
"dev": true,
|
|
963
|
+
"license": "Apache-2.0",
|
|
964
|
+
"dependencies": {
|
|
965
|
+
"@aws-sdk/types": "^3.973.1",
|
|
966
|
+
"@smithy/types": "^4.12.0",
|
|
967
|
+
"@smithy/url-parser": "^4.2.8",
|
|
968
|
+
"@smithy/util-endpoints": "^3.2.8",
|
|
969
|
+
"tslib": "^2.6.2"
|
|
970
|
+
},
|
|
971
|
+
"engines": {
|
|
972
|
+
"node": ">=20.0.0"
|
|
973
|
+
}
|
|
974
|
+
},
|
|
924
975
|
"node_modules/@aws-sdk/region-config-resolver": {
|
|
925
976
|
"version": "3.972.3",
|
|
926
977
|
"resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.972.3.tgz",
|
|
@@ -939,9 +990,9 @@
|
|
|
939
990
|
}
|
|
940
991
|
},
|
|
941
992
|
"node_modules/@aws-sdk/signature-v4-multi-region": {
|
|
942
|
-
"version": "3.
|
|
943
|
-
"resolved": "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.
|
|
944
|
-
"integrity": "sha512-
|
|
993
|
+
"version": "3.994.0",
|
|
994
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.994.0.tgz",
|
|
995
|
+
"integrity": "sha512-8y04Lv497KKd7f2TVlm2RaKQaNfnY17ZH8d3m+7sW/3R3BhZvHgWQZyqTb/vcN2ERz1YAnWx6woJyB3ZNFvakw==",
|
|
945
996
|
"dev": true,
|
|
946
997
|
"license": "Apache-2.0",
|
|
947
998
|
"dependencies": {
|
|
@@ -1003,9 +1054,9 @@
|
|
|
1003
1054
|
}
|
|
1004
1055
|
},
|
|
1005
1056
|
"node_modules/@aws-sdk/util-endpoints": {
|
|
1006
|
-
"version": "3.
|
|
1007
|
-
"resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.
|
|
1008
|
-
"integrity": "sha512-
|
|
1057
|
+
"version": "3.994.0",
|
|
1058
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.994.0.tgz",
|
|
1059
|
+
"integrity": "sha512-L2obUBw4ACMMd1F/SG5LdfPyZ0xJNs9Maifwr3w0uWO+4YvHmk9FfRskfSfE/SLZ9S387oSZ+1xiP7BfVCP/Og==",
|
|
1009
1060
|
"dev": true,
|
|
1010
1061
|
"license": "Apache-2.0",
|
|
1011
1062
|
"dependencies": {
|
|
@@ -1285,7 +1336,6 @@
|
|
|
1285
1336
|
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.0.tgz",
|
|
1286
1337
|
"integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==",
|
|
1287
1338
|
"license": "MIT",
|
|
1288
|
-
"peer": true,
|
|
1289
1339
|
"dependencies": {
|
|
1290
1340
|
"@babel/code-frame": "^7.29.0",
|
|
1291
1341
|
"@babel/generator": "^7.29.0",
|
|
@@ -1325,7 +1375,6 @@
|
|
|
1325
1375
|
"resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.28.6.tgz",
|
|
1326
1376
|
"integrity": "sha512-QGmsKi2PBO/MHSQk+AAgA9R6OHQr+VqnniFE0eMWZcVcfBZoA2dKn2hUsl3Csg/Plt9opRUWdY7//VXsrIlEiA==",
|
|
1327
1377
|
"license": "MIT",
|
|
1328
|
-
"peer": true,
|
|
1329
1378
|
"dependencies": {
|
|
1330
1379
|
"@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1",
|
|
1331
1380
|
"eslint-visitor-keys": "^2.1.0",
|
|
@@ -1582,7 +1631,6 @@
|
|
|
1582
1631
|
"resolved": "https://registry.npmjs.org/keyv/-/keyv-5.6.0.tgz",
|
|
1583
1632
|
"integrity": "sha512-CYDD3SOtsHtyXeEORYRx2qBtpDJFjRTGXUtmNEMGyzYOKj1TE3tycdlho7kA1Ufx9OYWZzg52QFBGALTirzDSw==",
|
|
1584
1633
|
"license": "MIT",
|
|
1585
|
-
"peer": true,
|
|
1586
1634
|
"dependencies": {
|
|
1587
1635
|
"@keyv/serialize": "^1.1.1"
|
|
1588
1636
|
}
|
|
@@ -1645,7 +1693,6 @@
|
|
|
1645
1693
|
}
|
|
1646
1694
|
],
|
|
1647
1695
|
"license": "MIT",
|
|
1648
|
-
"peer": true,
|
|
1649
1696
|
"engines": {
|
|
1650
1697
|
"node": ">=18"
|
|
1651
1698
|
},
|
|
@@ -1684,7 +1731,6 @@
|
|
|
1684
1731
|
}
|
|
1685
1732
|
],
|
|
1686
1733
|
"license": "MIT",
|
|
1687
|
-
"peer": true,
|
|
1688
1734
|
"engines": {
|
|
1689
1735
|
"node": ">=18"
|
|
1690
1736
|
}
|
|
@@ -3786,8 +3832,7 @@
|
|
|
3786
3832
|
"version": "8.28.2",
|
|
3787
3833
|
"resolved": "https://registry.npmjs.org/@lwc/errors/-/errors-8.28.2.tgz",
|
|
3788
3834
|
"integrity": "sha512-zf4Z1JCILrpwi1BGrtm0iiDrtD0mlNxWpPZZrVY8rCycvKP8DQvw4sXQdATiwu9IJAMWsYckFj84xxod6jITxA==",
|
|
3789
|
-
"license": "MIT"
|
|
3790
|
-
"peer": true
|
|
3835
|
+
"license": "MIT"
|
|
3791
3836
|
},
|
|
3792
3837
|
"node_modules/@lwc/eslint-plugin-lwc": {
|
|
3793
3838
|
"version": "2.2.0",
|
|
@@ -3944,7 +3989,6 @@
|
|
|
3944
3989
|
"resolved": "https://registry.npmjs.org/@lwc/sfdc-compiler-utils/-/sfdc-compiler-utils-12.3.4.tgz",
|
|
3945
3990
|
"integrity": "sha512-AtP9XBzCnrGreJFunohDGD3ZkdT7VTCBs+EncCJPxD2Ej7pRKXX242d5A/TTfi8sp656FuZ6M/jleMNvIyXlKg==",
|
|
3946
3991
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
3947
|
-
"peer": true,
|
|
3948
3992
|
"engines": {
|
|
3949
3993
|
"node": ">=14"
|
|
3950
3994
|
}
|
|
@@ -3960,7 +4004,6 @@
|
|
|
3960
4004
|
"resolved": "https://registry.npmjs.org/@lwc/template-compiler/-/template-compiler-8.28.2.tgz",
|
|
3961
4005
|
"integrity": "sha512-w9BjKBb/QBYSnoRr/DmIU0Hj++podwX3tqSwBLY9WFxwqyNu28Bz2ejqUEG8I2aY8eakPqFUxvySM5dOEdWXqQ==",
|
|
3962
4006
|
"license": "MIT",
|
|
3963
|
-
"peer": true,
|
|
3964
4007
|
"dependencies": {
|
|
3965
4008
|
"@lwc/errors": "8.28.2",
|
|
3966
4009
|
"@lwc/shared": "8.28.2",
|
|
@@ -4140,7 +4183,6 @@
|
|
|
4140
4183
|
"resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.9.0.tgz",
|
|
4141
4184
|
"integrity": "sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==",
|
|
4142
4185
|
"license": "Apache-2.0",
|
|
4143
|
-
"peer": true,
|
|
4144
4186
|
"engines": {
|
|
4145
4187
|
"node": ">=8.0.0"
|
|
4146
4188
|
}
|
|
@@ -4782,7 +4824,6 @@
|
|
|
4782
4824
|
"resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.25.9.tgz",
|
|
4783
4825
|
"integrity": "sha512-5UXfgpK0j0Xr/xIdgdLEhOFxaDZ0bRPWJJchRpqOSur/3rZoPbqqki5mm0p4NE2cs28krBEiSM2MB7//afRSQQ==",
|
|
4784
4826
|
"license": "MIT",
|
|
4785
|
-
"peer": true,
|
|
4786
4827
|
"dependencies": {
|
|
4787
4828
|
"@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1",
|
|
4788
4829
|
"eslint-visitor-keys": "^2.1.0",
|
|
@@ -4986,7 +5027,6 @@
|
|
|
4986
5027
|
"resolved": "https://registry.npmjs.org/@salesforce/eslint-plugin-lightning/-/eslint-plugin-lightning-2.0.0.tgz",
|
|
4987
5028
|
"integrity": "sha512-lC3GL2j6B2wAGeTFWT0h47BFg+0R7naqqlQW+ANvNSaIC/qEB+tNSRcdAZ8DRTojsI3GRdpgq3FTB1llbrFBng==",
|
|
4988
5029
|
"license": "MIT",
|
|
4989
|
-
"peer": true,
|
|
4990
5030
|
"engines": {
|
|
4991
5031
|
"node": ">=10.0.0"
|
|
4992
5032
|
},
|
|
@@ -5024,7 +5064,6 @@
|
|
|
5024
5064
|
"resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.2.tgz",
|
|
5025
5065
|
"integrity": "sha512-LEyamqS7W5HB3ujJyvi0HQK/dtVINZvd5mAAp9eT5S/ujByGjiZLCzPcHVzuXbpJDJF/cxwHlfceVUDZ2lnSTw==",
|
|
5026
5066
|
"license": "MIT",
|
|
5027
|
-
"peer": true,
|
|
5028
5067
|
"dependencies": {
|
|
5029
5068
|
"@eslint-community/eslint-utils": "^4.8.0",
|
|
5030
5069
|
"@eslint-community/regexpp": "^4.12.1",
|
|
@@ -5230,7 +5269,6 @@
|
|
|
5230
5269
|
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.27.4.tgz",
|
|
5231
5270
|
"integrity": "sha512-bXYxrXFubeYdvB0NhD/NBB3Qi6aZeV20GOWVI47t2dkecCEoneR4NPVcb7abpXDEvejgrUfFtG6vG/zxAKmg+g==",
|
|
5232
5271
|
"license": "MIT",
|
|
5233
|
-
"peer": true,
|
|
5234
5272
|
"dependencies": {
|
|
5235
5273
|
"@ampproject/remapping": "^2.2.0",
|
|
5236
5274
|
"@babel/code-frame": "^7.27.1",
|
|
@@ -5602,7 +5640,6 @@
|
|
|
5602
5640
|
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz",
|
|
5603
5641
|
"integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==",
|
|
5604
5642
|
"license": "Apache-2.0",
|
|
5605
|
-
"peer": true,
|
|
5606
5643
|
"bin": {
|
|
5607
5644
|
"tsc": "bin/tsc",
|
|
5608
5645
|
"tsserver": "bin/tsserver"
|
|
@@ -5868,7 +5905,6 @@
|
|
|
5868
5905
|
"resolved": "https://registry.npmjs.org/@salesforce/eslint-plugin-lightning/-/eslint-plugin-lightning-1.0.1.tgz",
|
|
5869
5906
|
"integrity": "sha512-oyUVSNUA0WkkQr3BRtcAYhYotzIpqZtfMpUVMhROPN8YjDGu6CzCoC3/1i4ySIevgmH3J83KypwoqvRfoQf8Ww==",
|
|
5870
5907
|
"license": "MIT",
|
|
5871
|
-
"peer": true,
|
|
5872
5908
|
"peerDependencies": {
|
|
5873
5909
|
"eslint": "^7 || ^8"
|
|
5874
5910
|
}
|
|
@@ -6501,9 +6537,9 @@
|
|
|
6501
6537
|
}
|
|
6502
6538
|
},
|
|
6503
6539
|
"node_modules/@salesforce/mcp-provider-dx-core": {
|
|
6504
|
-
"version": "0.
|
|
6505
|
-
"resolved": "https://registry.npmjs.org/@salesforce/mcp-provider-dx-core/-/mcp-provider-dx-core-0.
|
|
6506
|
-
"integrity": "sha512-
|
|
6540
|
+
"version": "0.8.0",
|
|
6541
|
+
"resolved": "https://registry.npmjs.org/@salesforce/mcp-provider-dx-core/-/mcp-provider-dx-core-0.8.0.tgz",
|
|
6542
|
+
"integrity": "sha512-aGfHDBLYPlJJixIPnl9i9N+TohRKf6FE/4CAXj3aJ11UFyXpGDuu19aW2mG6tt+POBDPTOUBA40VNIZzP0Woqw==",
|
|
6507
6543
|
"license": "Apache-2.0",
|
|
6508
6544
|
"dependencies": {
|
|
6509
6545
|
"@modelcontextprotocol/sdk": "^1.18.0",
|
|
@@ -6582,6 +6618,39 @@
|
|
|
6582
6618
|
"zod": "^3.25.76"
|
|
6583
6619
|
}
|
|
6584
6620
|
},
|
|
6621
|
+
"node_modules/@salesforce/mcp-provider-metadata-enrichment/node_modules/@salesforce/mcp-provider-dx-core": {
|
|
6622
|
+
"version": "0.7.0",
|
|
6623
|
+
"resolved": "https://registry.npmjs.org/@salesforce/mcp-provider-dx-core/-/mcp-provider-dx-core-0.7.0.tgz",
|
|
6624
|
+
"integrity": "sha512-5VbqefBzzZcBdR4kOmpvre2xnB0i3IAThp7HgfCCnn2akXhHOEc3QtPp8DAGYS9shva1q2SYweGpau7jPcDwLg==",
|
|
6625
|
+
"license": "Apache-2.0",
|
|
6626
|
+
"dependencies": {
|
|
6627
|
+
"@modelcontextprotocol/sdk": "^1.18.0",
|
|
6628
|
+
"@salesforce/agents": "^0.15.4",
|
|
6629
|
+
"@salesforce/apex-node": "^8.2.1",
|
|
6630
|
+
"@salesforce/core": "^8.24.3",
|
|
6631
|
+
"@salesforce/kit": "^3.1.6",
|
|
6632
|
+
"@salesforce/mcp-provider-api": "^0.4.1",
|
|
6633
|
+
"@salesforce/source-deploy-retrieve": "^12.31.8",
|
|
6634
|
+
"@salesforce/source-tracking": "^7.8.2",
|
|
6635
|
+
"@salesforce/ts-types": "^2.0.11",
|
|
6636
|
+
"open": "^10.1.2",
|
|
6637
|
+
"zod": "^3.25.76"
|
|
6638
|
+
}
|
|
6639
|
+
},
|
|
6640
|
+
"node_modules/@salesforce/mcp-provider-metadata-enrichment/node_modules/@salesforce/mcp-provider-dx-core/node_modules/@salesforce/mcp-provider-api": {
|
|
6641
|
+
"version": "0.4.1",
|
|
6642
|
+
"resolved": "https://registry.npmjs.org/@salesforce/mcp-provider-api/-/mcp-provider-api-0.4.1.tgz",
|
|
6643
|
+
"integrity": "sha512-+e+xIEqfgNSETnn8Mv0jlto3q3MDX5V781ijrm5irwcZn9QmXPRBVDmVvByKHi8gDhDh9Wm5hzCcinTqtUaAcg==",
|
|
6644
|
+
"license": "Apache-2.0",
|
|
6645
|
+
"dependencies": {
|
|
6646
|
+
"@modelcontextprotocol/sdk": "^1.18.0",
|
|
6647
|
+
"@salesforce/core": "^8",
|
|
6648
|
+
"@salesforce/ts-types": "^2",
|
|
6649
|
+
"@types/semver": "^7.7.1",
|
|
6650
|
+
"semver": "^7.7.2",
|
|
6651
|
+
"zod": "^3.25.76"
|
|
6652
|
+
}
|
|
6653
|
+
},
|
|
6585
6654
|
"node_modules/@salesforce/mcp-provider-mobile-web": {
|
|
6586
6655
|
"version": "0.2.2",
|
|
6587
6656
|
"resolved": "https://registry.npmjs.org/@salesforce/mcp-provider-mobile-web/-/mcp-provider-mobile-web-0.2.2.tgz",
|
|
@@ -6952,9 +7021,9 @@
|
|
|
6952
7021
|
"license": "ISC"
|
|
6953
7022
|
},
|
|
6954
7023
|
"node_modules/@salesforce/source-deploy-retrieve": {
|
|
6955
|
-
"version": "12.31.
|
|
6956
|
-
"resolved": "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.31.
|
|
6957
|
-
"integrity": "sha512-
|
|
7024
|
+
"version": "12.31.14",
|
|
7025
|
+
"resolved": "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.31.14.tgz",
|
|
7026
|
+
"integrity": "sha512-tLnTCG6t+d+MN8pGijF6nL4lsqE37FaBINZZvyd+IDAw+7eWffFqIXK/nNyQ1ZARTNeHOs5K/NlNXNBp5+x/YQ==",
|
|
6958
7027
|
"license": "Apache-2.0",
|
|
6959
7028
|
"dependencies": {
|
|
6960
7029
|
"@salesforce/core": "^8.26.2",
|
|
@@ -6962,7 +7031,7 @@
|
|
|
6962
7031
|
"@salesforce/ts-types": "^2.0.12",
|
|
6963
7032
|
"@salesforce/types": "^1.6.0",
|
|
6964
7033
|
"fast-levenshtein": "^3.0.0",
|
|
6965
|
-
"fast-xml-parser": "^5.3.
|
|
7034
|
+
"fast-xml-parser": "^5.3.6",
|
|
6966
7035
|
"got": "^11.8.6",
|
|
6967
7036
|
"graceful-fs": "^4.2.11",
|
|
6968
7037
|
"ignore": "^5.3.2",
|
|
@@ -7082,9 +7151,9 @@
|
|
|
7082
7151
|
}
|
|
7083
7152
|
},
|
|
7084
7153
|
"node_modules/@salesforce/types": {
|
|
7085
|
-
"version": "1.
|
|
7086
|
-
"resolved": "https://registry.npmjs.org/@salesforce/types/-/types-1.
|
|
7087
|
-
"integrity": "sha512-
|
|
7154
|
+
"version": "1.7.1",
|
|
7155
|
+
"resolved": "https://registry.npmjs.org/@salesforce/types/-/types-1.7.1.tgz",
|
|
7156
|
+
"integrity": "sha512-PyV3ZyZum8bjO1LByNXWCSOGt1b9X9x2knIiFWgnYTsHmLK8OP+f6i+wPh4qu1e8+Zr+hNV0rTKVP8p/kCGqyQ==",
|
|
7088
7157
|
"license": "BSD-3-Clause",
|
|
7089
7158
|
"engines": {
|
|
7090
7159
|
"node": ">=18"
|
|
@@ -8094,7 +8163,6 @@
|
|
|
8094
8163
|
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.19.11.tgz",
|
|
8095
8164
|
"integrity": "sha512-BH7YwL6rA93ReqeQS1c4bsPpcfOmJasG+Fkr6Y59q83f9M1WcBRHR2vM+P9eOisYRcN3ujQoiZY8uk5W+1WL8w==",
|
|
8096
8165
|
"license": "MIT",
|
|
8097
|
-
"peer": true,
|
|
8098
8166
|
"dependencies": {
|
|
8099
8167
|
"undici-types": "~6.21.0"
|
|
8100
8168
|
}
|
|
@@ -8204,7 +8272,6 @@
|
|
|
8204
8272
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.56.0.tgz",
|
|
8205
8273
|
"integrity": "sha512-IgSWvLobTDOjnaxAfDTIHaECbkNlAlKv2j5SjpB2v7QHKv1FIfjwMy8FsDbVfDX/KjmCmYICcw7uGaXLhtsLNg==",
|
|
8206
8274
|
"license": "MIT",
|
|
8207
|
-
"peer": true,
|
|
8208
8275
|
"dependencies": {
|
|
8209
8276
|
"@typescript-eslint/scope-manager": "8.56.0",
|
|
8210
8277
|
"@typescript-eslint/types": "8.56.0",
|
|
@@ -8457,7 +8524,6 @@
|
|
|
8457
8524
|
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz",
|
|
8458
8525
|
"integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==",
|
|
8459
8526
|
"license": "MIT",
|
|
8460
|
-
"peer": true,
|
|
8461
8527
|
"bin": {
|
|
8462
8528
|
"acorn": "bin/acorn"
|
|
8463
8529
|
},
|
|
@@ -8484,9 +8550,9 @@
|
|
|
8484
8550
|
}
|
|
8485
8551
|
},
|
|
8486
8552
|
"node_modules/acorn-walk": {
|
|
8487
|
-
"version": "8.3.
|
|
8488
|
-
"resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.
|
|
8489
|
-
"integrity": "sha512-
|
|
8553
|
+
"version": "8.3.5",
|
|
8554
|
+
"resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.5.tgz",
|
|
8555
|
+
"integrity": "sha512-HEHNfbars9v4pgpW6SO1KSPkfoS0xVOM/9UzkJltjlsHZmJasxg8aXkuZa7SMf8vKGIBhpUsPluQSqhJFCqebw==",
|
|
8490
8556
|
"dev": true,
|
|
8491
8557
|
"license": "MIT",
|
|
8492
8558
|
"dependencies": {
|
|
@@ -9035,12 +9101,15 @@
|
|
|
9035
9101
|
}
|
|
9036
9102
|
},
|
|
9037
9103
|
"node_modules/baseline-browser-mapping": {
|
|
9038
|
-
"version": "2.
|
|
9039
|
-
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.
|
|
9040
|
-
"integrity": "sha512-
|
|
9104
|
+
"version": "2.10.0",
|
|
9105
|
+
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.0.tgz",
|
|
9106
|
+
"integrity": "sha512-lIyg0szRfYbiy67j9KN8IyeD7q7hcmqnJ1ddWmNt19ItGpNN64mnllmxUNFIOdOm6by97jlL6wfpTTJrmnjWAA==",
|
|
9041
9107
|
"license": "Apache-2.0",
|
|
9042
9108
|
"bin": {
|
|
9043
|
-
"baseline-browser-mapping": "dist/cli.
|
|
9109
|
+
"baseline-browser-mapping": "dist/cli.cjs"
|
|
9110
|
+
},
|
|
9111
|
+
"engines": {
|
|
9112
|
+
"node": ">=6.0.0"
|
|
9044
9113
|
}
|
|
9045
9114
|
},
|
|
9046
9115
|
"node_modules/basic-ftp": {
|
|
@@ -9143,7 +9212,6 @@
|
|
|
9143
9212
|
}
|
|
9144
9213
|
],
|
|
9145
9214
|
"license": "MIT",
|
|
9146
|
-
"peer": true,
|
|
9147
9215
|
"dependencies": {
|
|
9148
9216
|
"baseline-browser-mapping": "^2.9.0",
|
|
9149
9217
|
"caniuse-lite": "^1.0.30001759",
|
|
@@ -10362,7 +10430,6 @@
|
|
|
10362
10430
|
"resolved": "https://registry.npmjs.org/diagnostic-channel/-/diagnostic-channel-1.1.1.tgz",
|
|
10363
10431
|
"integrity": "sha512-r2HV5qFkUICyoaKlBEpLKHjxMXATUf/l+h8UZPGBHGLy4DDiY2sOLcIctax4eRnTw5wH2jTMExLntGPJ8eOJxw==",
|
|
10364
10432
|
"license": "MIT",
|
|
10365
|
-
"peer": true,
|
|
10366
10433
|
"dependencies": {
|
|
10367
10434
|
"semver": "^7.5.3"
|
|
10368
10435
|
}
|
|
@@ -10752,7 +10819,6 @@
|
|
|
10752
10819
|
"integrity": "sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==",
|
|
10753
10820
|
"deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.",
|
|
10754
10821
|
"license": "MIT",
|
|
10755
|
-
"peer": true,
|
|
10756
10822
|
"dependencies": {
|
|
10757
10823
|
"@eslint-community/eslint-utils": "^4.2.0",
|
|
10758
10824
|
"@eslint-community/regexpp": "^4.6.1",
|
|
@@ -10891,7 +10957,6 @@
|
|
|
10891
10957
|
"integrity": "sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==",
|
|
10892
10958
|
"dev": true,
|
|
10893
10959
|
"license": "BSD-2-Clause",
|
|
10894
|
-
"peer": true,
|
|
10895
10960
|
"dependencies": {
|
|
10896
10961
|
"@typescript-eslint/scope-manager": "6.21.0",
|
|
10897
10962
|
"@typescript-eslint/types": "6.21.0",
|
|
@@ -11151,7 +11216,6 @@
|
|
|
11151
11216
|
"resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.32.0.tgz",
|
|
11152
11217
|
"integrity": "sha512-whOE1HFo/qJDyX4SnXzP4N6zOWn79WhnCUY/iDR0mPfQZO8wcYE4JClzI2oZrhBnnMUCBCHZhO6VQyoBU95mZA==",
|
|
11153
11218
|
"license": "MIT",
|
|
11154
|
-
"peer": true,
|
|
11155
11219
|
"dependencies": {
|
|
11156
11220
|
"@rtsao/scc": "^1.1.0",
|
|
11157
11221
|
"array-includes": "^3.1.9",
|
|
@@ -11237,7 +11301,6 @@
|
|
|
11237
11301
|
"resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-29.15.0.tgz",
|
|
11238
11302
|
"integrity": "sha512-ZCGr7vTH2WSo2hrK5oM2RULFmMruQ7W3cX7YfwoTiPfzTGTFBMmrVIz45jZHd++cGKj/kWf02li/RhTGcANJSA==",
|
|
11239
11303
|
"license": "MIT",
|
|
11240
|
-
"peer": true,
|
|
11241
11304
|
"dependencies": {
|
|
11242
11305
|
"@typescript-eslint/utils": "^8.0.0"
|
|
11243
11306
|
},
|
|
@@ -11620,7 +11683,6 @@
|
|
|
11620
11683
|
"resolved": "https://registry.npmjs.org/express/-/express-5.2.1.tgz",
|
|
11621
11684
|
"integrity": "sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==",
|
|
11622
11685
|
"license": "MIT",
|
|
11623
|
-
"peer": true,
|
|
11624
11686
|
"dependencies": {
|
|
11625
11687
|
"accepts": "^2.0.0",
|
|
11626
11688
|
"body-parser": "^2.2.1",
|
|
@@ -12498,16 +12560,16 @@
|
|
|
12498
12560
|
}
|
|
12499
12561
|
},
|
|
12500
12562
|
"node_modules/glob/node_modules/minimatch": {
|
|
12501
|
-
"version": "10.2.
|
|
12502
|
-
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.
|
|
12503
|
-
"integrity": "sha512
|
|
12563
|
+
"version": "10.2.2",
|
|
12564
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.2.tgz",
|
|
12565
|
+
"integrity": "sha512-+G4CpNBxa5MprY+04MbgOw1v7So6n5JY166pFi9KfYwT78fxScCeSNQSNzp6dpPSW2rONOps6Ocam1wFhCgoVw==",
|
|
12504
12566
|
"dev": true,
|
|
12505
12567
|
"license": "BlueOak-1.0.0",
|
|
12506
12568
|
"dependencies": {
|
|
12507
12569
|
"brace-expansion": "^5.0.2"
|
|
12508
12570
|
},
|
|
12509
12571
|
"engines": {
|
|
12510
|
-
"node": "20 || >=22"
|
|
12572
|
+
"node": "18 || 20 || >=22"
|
|
12511
12573
|
},
|
|
12512
12574
|
"funding": {
|
|
12513
12575
|
"url": "https://github.com/sponsors/isaacs"
|
|
@@ -12757,9 +12819,9 @@
|
|
|
12757
12819
|
}
|
|
12758
12820
|
},
|
|
12759
12821
|
"node_modules/hashery": {
|
|
12760
|
-
"version": "1.
|
|
12761
|
-
"resolved": "https://registry.npmjs.org/hashery/-/hashery-1.
|
|
12762
|
-
"integrity": "sha512-
|
|
12822
|
+
"version": "1.5.0",
|
|
12823
|
+
"resolved": "https://registry.npmjs.org/hashery/-/hashery-1.5.0.tgz",
|
|
12824
|
+
"integrity": "sha512-nhQ6ExaOIqti2FDWoEMWARUqIKyjr2VcZzXShrI+A3zpeiuPWzx6iPftt44LhP74E5sW36B75N6VHbvRtpvO6Q==",
|
|
12763
12825
|
"license": "MIT",
|
|
12764
12826
|
"dependencies": {
|
|
12765
12827
|
"hookified": "^1.14.0"
|
|
@@ -12806,11 +12868,10 @@
|
|
|
12806
12868
|
"license": "MIT"
|
|
12807
12869
|
},
|
|
12808
12870
|
"node_modules/hono": {
|
|
12809
|
-
"version": "4.
|
|
12810
|
-
"resolved": "https://registry.npmjs.org/hono/-/hono-4.
|
|
12811
|
-
"integrity": "sha512-
|
|
12871
|
+
"version": "4.12.0",
|
|
12872
|
+
"resolved": "https://registry.npmjs.org/hono/-/hono-4.12.0.tgz",
|
|
12873
|
+
"integrity": "sha512-NekXntS5M94pUfiVZ8oXXK/kkri+5WpX2/Ik+LVsl+uvw+soj4roXIsPqO+XsWrAw20mOzaXOZf3Q7PfB9A/IA==",
|
|
12812
12874
|
"license": "MIT",
|
|
12813
|
-
"peer": true,
|
|
12814
12875
|
"engines": {
|
|
12815
12876
|
"node": ">=16.9.0"
|
|
12816
12877
|
}
|
|
@@ -14731,11 +14792,11 @@
|
|
|
14731
14792
|
}
|
|
14732
14793
|
},
|
|
14733
14794
|
"node_modules/minipass": {
|
|
14734
|
-
"version": "7.1.
|
|
14735
|
-
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.
|
|
14736
|
-
"integrity": "sha512-
|
|
14795
|
+
"version": "7.1.3",
|
|
14796
|
+
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.3.tgz",
|
|
14797
|
+
"integrity": "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==",
|
|
14737
14798
|
"dev": true,
|
|
14738
|
-
"license": "
|
|
14799
|
+
"license": "BlueOak-1.0.0",
|
|
14739
14800
|
"engines": {
|
|
14740
14801
|
"node": ">=16 || 14 >=14.17"
|
|
14741
14802
|
}
|
|
@@ -16119,9 +16180,9 @@
|
|
|
16119
16180
|
"license": "MIT"
|
|
16120
16181
|
},
|
|
16121
16182
|
"node_modules/path-scurry": {
|
|
16122
|
-
"version": "2.0.
|
|
16123
|
-
"resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.
|
|
16124
|
-
"integrity": "sha512-
|
|
16183
|
+
"version": "2.0.2",
|
|
16184
|
+
"resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.2.tgz",
|
|
16185
|
+
"integrity": "sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==",
|
|
16125
16186
|
"dev": true,
|
|
16126
16187
|
"license": "BlueOak-1.0.0",
|
|
16127
16188
|
"dependencies": {
|
|
@@ -16129,7 +16190,7 @@
|
|
|
16129
16190
|
"minipass": "^7.1.2"
|
|
16130
16191
|
},
|
|
16131
16192
|
"engines": {
|
|
16132
|
-
"node": "20 || >=22"
|
|
16193
|
+
"node": "18 || 20 || >=22"
|
|
16133
16194
|
},
|
|
16134
16195
|
"funding": {
|
|
16135
16196
|
"url": "https://github.com/sponsors/isaacs"
|
|
@@ -16398,7 +16459,6 @@
|
|
|
16398
16459
|
}
|
|
16399
16460
|
],
|
|
16400
16461
|
"license": "MIT",
|
|
16401
|
-
"peer": true,
|
|
16402
16462
|
"dependencies": {
|
|
16403
16463
|
"nanoid": "^3.3.7",
|
|
16404
16464
|
"picocolors": "^1.1.1",
|
|
@@ -18537,7 +18597,6 @@
|
|
|
18537
18597
|
"resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.1.tgz",
|
|
18538
18598
|
"integrity": "sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==",
|
|
18539
18599
|
"license": "MIT",
|
|
18540
|
-
"peer": true,
|
|
18541
18600
|
"dependencies": {
|
|
18542
18601
|
"cssesc": "^3.0.0",
|
|
18543
18602
|
"util-deprecate": "^1.0.2"
|
|
@@ -18787,7 +18846,6 @@
|
|
|
18787
18846
|
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz",
|
|
18788
18847
|
"integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
|
|
18789
18848
|
"license": "MIT",
|
|
18790
|
-
"peer": true,
|
|
18791
18849
|
"engines": {
|
|
18792
18850
|
"node": ">=12"
|
|
18793
18851
|
},
|
|
@@ -19006,8 +19064,7 @@
|
|
|
19006
19064
|
"version": "2.8.1",
|
|
19007
19065
|
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
|
|
19008
19066
|
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
|
|
19009
|
-
"license": "0BSD"
|
|
19010
|
-
"peer": true
|
|
19067
|
+
"license": "0BSD"
|
|
19011
19068
|
},
|
|
19012
19069
|
"node_modules/tunnel-agent": {
|
|
19013
19070
|
"version": "0.6.0",
|
|
@@ -19158,7 +19215,6 @@
|
|
|
19158
19215
|
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
|
|
19159
19216
|
"integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
|
|
19160
19217
|
"license": "Apache-2.0",
|
|
19161
|
-
"peer": true,
|
|
19162
19218
|
"bin": {
|
|
19163
19219
|
"tsc": "bin/tsc",
|
|
19164
19220
|
"tsserver": "bin/tsserver"
|
|
@@ -19936,7 +19992,6 @@
|
|
|
19936
19992
|
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
19937
19993
|
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
19938
19994
|
"license": "MIT",
|
|
19939
|
-
"peer": true,
|
|
19940
19995
|
"funding": {
|
|
19941
19996
|
"url": "https://github.com/sponsors/colinhacks"
|
|
19942
19997
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/mcp",
|
|
3
|
-
"version": "0.26.
|
|
3
|
+
"version": "0.26.6",
|
|
4
4
|
"description": "MCP Server for interacting with Salesforce instances",
|
|
5
5
|
"bin": {
|
|
6
6
|
"sf-mcp-server": "bin/run.js"
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"@salesforce/core": "^8.24.3",
|
|
46
46
|
"@salesforce/kit": "^3.1.6",
|
|
47
47
|
"@salesforce/mcp-provider-api": "0.5.0",
|
|
48
|
-
"@salesforce/mcp-provider-dx-core": "0.
|
|
48
|
+
"@salesforce/mcp-provider-dx-core": "0.8.0",
|
|
49
49
|
"@salesforce/mcp-provider-code-analyzer": "0.5.2",
|
|
50
50
|
"@salesforce/mcp-provider-lwc-experts": "0.6.5",
|
|
51
51
|
"@salesforce/mcp-provider-aura-experts": "0.3.6",
|