Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/publish-mcp-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,13 @@ jobs:
if: ${{ steps.changelog.outputs.skipped == 'false' && steps.release.outputs.id != '' }}
run: |
cd packages/mcp
rm -rf node_modules
mkdir ${{ runner.temp }}/mcp-shrinkwrap
cp -r . ${{ runner.temp }}/mcp-shrinkwrap
cd ${{ runner.temp }}/mcp-shrinkwrap
npm install
npm shrinkwrap

echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc

# Determine npm dist-tag
Expand Down
3 changes: 3 additions & 0 deletions packages/mcp/.sfdevrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{
"scripts": {
"prepack": "echo 'no prepack script'"
},
"devDepOverrides": [
"eslint-config-salesforce-license",
"@types/node"
Expand Down
9 changes: 9 additions & 0 deletions packages/mcp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## [0.19.2-dev.1](https://github.com/salesforcecli/mcp/compare/0.19.1...0.19.2-dev.1) (2025-09-05)


### Bug Fixes

* add shrinkwrap lockfile ([400fe7a](https://github.com/salesforcecli/mcp/commit/400fe7a1852956aa8d25f5f299334f67acb36ea6))



## [0.19.1](https://github.com/salesforcecli/mcp/compare/0.19.0...0.19.1) (2025-09-04)


Expand Down
5 changes: 4 additions & 1 deletion packages/mcp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@salesforce/mcp",
"version": "0.19.1",
"version": "0.19.2-dev.1",
"description": "MCP Server for interacting with Salesforce instances",
"bin": {
"sf-mcp-server": "bin/run.js"
Expand All @@ -22,7 +22,9 @@
"lint-fix": "yarn sf-lint --fix",
"package": "yarn pack",
"postpack": "sf-clean --ignore-signing-artifacts",
"prepack": "echo 'no prepack script'",
"prepare": "sf-install",
"prepublishOnly": "npm shrinkwrap",
"start": "yarn build && npm link && mcp-inspector sf-mcp-server",
"test": "wireit",
"test:only": "wireit"
Expand All @@ -38,6 +40,7 @@
"!lib/**/*.map",
"messages",
"LICENSE.txt",
"npm-shrinkwrap.json",
"package.json"
],
"dependencies": {
Expand Down