Skip to content

Commit cf40a71

Browse files
committed
chore: update version to 1.5.2 and enhance tool descriptions for clarity
1 parent 3b7f41c commit cf40a71

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@ 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.5.2] - 2025-09-15
9+
10+
### Changed
11+
12+
- **Improved Tool Descriptions**: Refactored and simplified descriptions across multiple tools for better clarity and conciseness
13+
- Enhanced parameter descriptions for code analyzer tools to be more user-friendly
14+
- Improved scanner tool descriptions for better understanding of security analysis capabilities
15+
- Clarified deploy_start tool parameter descriptions for deployment options
16+
- Added missing description for generate_component tool in Lightning tools
17+
- **Code Quality**: Removed unused imports and improved code organization
18+
- Removed unused `executeSfCommandRaw` import from apex.ts
19+
- General code refactoring for better maintainability
20+
821
## [1.5.1] - 2025-09-03
922

1023
### Fixed

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"dxt_version": "0.2",
33
"name": "salesforce-mcp-server",
44
"display_name": "Salesforce MCP Server",
5-
"version": "1.5.1",
5+
"version": "1.5.2",
66
"description": "Salesforce MCP Server - Interact with Salesforce orgs through AI assistants",
77
"icon": "icon.png",
88
"long_description": "Enables AI assistants to execute Apex code, query Salesforce data, and manage org metadata using your existing Salesforce CLI authentication. Perfect for developers and administrators who want to automate Salesforce tasks through natural language interactions.\n\nSupports environment variables:\n- READ_ONLY=true - Prevents Apex code execution\n- ALLOWED_ORGS=ALL or comma-separated org list - Restricts access to specific orgs (default: ALL)",

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.5.1",
3+
"version": "1.5.2",
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function buildServerDescription(): string {
2525
const allowedOrgs = permissions.getAllowedOrgs();
2626
const permissionInfo = [];
2727

28-
let description = `Salesforce MCP Server v1.5.1 - AI-powered Salesforce automation via CLI integration\n`;
28+
let description = `Salesforce MCP Server v1.5.2 - AI-powered Salesforce automation via CLI integration\n`;
2929
description += `Capabilities: Apex execution, SOQL queries, org management, code testing & coverage\n`;
3030

3131
if (readOnlyMode) {

0 commit comments

Comments
 (0)