Skip to content

Commit b9920d5

Browse files
committed
feat: update version to 1.3.1, add shebang for npm package execution, and document changes in changelog
1 parent 724e436 commit b9920d5

File tree

4 files changed

+11
-2
lines changed

4 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.3.1] - 2025-08-21
9+
10+
### Fixed
11+
12+
- **NPM Package Execution**: Added shebang line (`#!/usr/bin/env node`) to fix npm package execution when run via `npx` - resolves "import: command not found" errors and enables direct VS Code MCP configuration usage
13+
814
## [1.3.0] - 2025-08-19
915

1016
### Added

CLAUDE.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,3 +135,5 @@ The project supports Desktop Extension (.dxt) packaging for one-click installati
135135
- Build package and dxt file after making changes
136136
- Check that new tools are registered in both the tool file and manifest.json
137137
- Verify permission checks are implemented for destructive operations
138+
139+
- don't forget to add shebang to the build file after creating a new build and before publishing it. it's important

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@advanced-communities/salesforce-mcp-server",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"description": "MCP server enabling AI assistants to interact with Salesforce orgs through the Salesforce CLI",
55
"main": "./src/index.ts",
66
"scripts": {

src/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/usr/bin/env node
12
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
23
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
34
import { registerApexTools } from "./tools/apex.js";
@@ -46,7 +47,7 @@ function buildServerDescription(): string {
4647

4748
const server = new McpServer({
4849
name: "salesforce-mcp-server",
49-
version: "1.3.0",
50+
version: "1.3.1",
5051
description: buildServerDescription(),
5152
capabilities: {
5253
tools: {},

0 commit comments

Comments
 (0)