mcp-server-sfmc 0.1.9 → 0.2.1
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 +3 -3
- package/bundled/mce-help/chunks.json +1 -1
- package/dist/index.js +93 -48
- package/dist/index.js.map +1 -1
- package/dist/mce-help-search.d.ts +3 -2
- package/dist/mce-help-search.d.ts.map +1 -1
- package/dist/mce-help-search.js +17 -7
- package/dist/mce-help-search.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -43,7 +43,7 @@ None of these replace the VS Code extension for **editing** (syntax, LSP, snippe
|
|
|
43
43
|
| **Completions** | AMPscript function/keyword completions, SSJS Platform API catalog |
|
|
44
44
|
| **Prompts** | Guided prompts for writing AMPscript, SSJS, reviewing code, and converting between the two |
|
|
45
45
|
| **Resources** | Full function catalogs, keyword list, unsupported ES6+ syntax list |
|
|
46
|
-
| **MCE help search** | Bundled excerpts from
|
|
46
|
+
| **MCE help search** | Bundled excerpts from mirrored Salesforce Help (MCE vs Next scoped) |
|
|
47
47
|
|
|
48
48
|
## Quick start
|
|
49
49
|
|
|
@@ -238,7 +238,7 @@ In clients that support MCP prompts (e.g. VS Code with the `/mcp.sfmc.answerMceH
|
|
|
238
238
|
|
|
239
239
|
## Refresh bundled Marketing Cloud Engagement help
|
|
240
240
|
|
|
241
|
-
The published npm package includes `bundled/mce-help/chunks.json`,
|
|
241
|
+
The published npm package includes `bundled/mce-help/chunks.json`, produced by `npm run bundle-mce-help`. By default the bundler uses the path in **`MCE_HELP_DOCS`** (see `scripts/bundle-mce-help.mjs`); set it to the root of your mirrored MCE Help Markdown tree when not using the maintainer default.
|
|
242
242
|
|
|
243
243
|
```bash
|
|
244
244
|
cd mcp-server-sfmc
|
|
@@ -247,7 +247,7 @@ npm run build
|
|
|
247
247
|
npm test
|
|
248
248
|
```
|
|
249
249
|
|
|
250
|
-
|
|
250
|
+
Example: `MCE_HELP_DOCS=/absolute/path/to/mce-help-mirror npm run bundle-mce-help`
|
|
251
251
|
|
|
252
252
|
## AI code review in pull requests
|
|
253
253
|
|