salesforce-metadata-mcp 2.4.0 → 2.5.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/CHANGELOG.md +80 -0
- package/README.md +22 -2
- package/TOOLS.md +2034 -103
- package/dist/index.js +4 -4
- package/dist/schemas/index.js +315 -0
- package/dist/services/salesforce.js +748 -0
- package/dist/tools/admin.js +103 -0
- package/dist/tools/agentforce.js +50 -2
- package/dist/tools/apex.js +85 -2
- package/dist/tools/automation.js +67 -2
- package/dist/tools/data.js +65 -2
- package/dist/tools/deployment.js +89 -2
- package/dist/tools/experience.js +55 -2
- package/dist/tools/index.js +4 -0
- package/dist/tools/integrations.js +56 -2
- package/dist/tools/monitoring.js +80 -0
- package/dist/tools/objects.js +89 -2
- package/dist/tools/omnistudio.js +51 -0
- package/package.json +18 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,85 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.5.1] - 2026-05-28
|
|
4
|
+
|
|
5
|
+
### Documentation
|
|
6
|
+
- Rewrote `TOOLS.md` as a comprehensive reference covering all 200+ tools (was 193 lines covering ~8 tools; now 2,100+ lines covering all 207 tools with parameters and example prompts)
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## [2.5.0] - 2026-05-28
|
|
11
|
+
|
|
12
|
+
### New Tools — 45 Additions Across 11 Categories
|
|
13
|
+
|
|
14
|
+
#### Admin & Org Management (6 new)
|
|
15
|
+
- `sf_create_user_role_hierarchy` — Create a UserRole in the Salesforce role hierarchy with optional parent role
|
|
16
|
+
- `sf_reset_user_password` — Reset a user's password and send a password-reset email
|
|
17
|
+
- `sf_freeze_user` — Freeze or unfreeze a user account (blocks login without deactivating)
|
|
18
|
+
- `sf_create_territory` — Create an Enterprise Territory Management (ETM) Territory2
|
|
19
|
+
- `sf_assign_territory_to_user` — Assign a user to a Territory2 via UserTerritory2Association
|
|
20
|
+
- `sf_create_forecast_hierarchy` — Configure a Collaborative Forecasting hierarchy manager relationship
|
|
21
|
+
|
|
22
|
+
#### Object Schema (5 new)
|
|
23
|
+
- `sf_delete_custom_object` — Permanently delete a custom object and all its records (destructive)
|
|
24
|
+
- `sf_delete_custom_field` — Permanently delete a custom field from an object (destructive)
|
|
25
|
+
- `sf_create_rollup_summary_field` — Create a Roll-Up Summary field (COUNT/SUM/MIN/MAX) on a master object
|
|
26
|
+
- `sf_create_external_id_field` — Create an External ID indexed field for upsert operations
|
|
27
|
+
- `sf_enable_object_features` — Enable history tracking, activities, reports, search, feeds, and Bulk API on a custom object
|
|
28
|
+
|
|
29
|
+
#### Automation & Flows (4 new)
|
|
30
|
+
- `sf_update_flow` — Update a Flow's label, description, or API version
|
|
31
|
+
- `sf_clone_flow` — Clone a Flow to a new API name and label
|
|
32
|
+
- `sf_create_flow_test` — Create a Flow Interview Test definition for the Flow Test Manager
|
|
33
|
+
- `sf_create_invocable_action` — Register a custom Invocable Action wrapping an @InvocableMethod Apex class
|
|
34
|
+
|
|
35
|
+
#### Apex Development (5 new)
|
|
36
|
+
- `sf_search_apex` — Search Apex class and trigger source code for a keyword across the org
|
|
37
|
+
- `sf_get_apex_logs` — List recent Apex debug log entries with metadata (operation, duration, size)
|
|
38
|
+
- `sf_get_apex_log_body` — Retrieve the full content of an Apex debug log by ID
|
|
39
|
+
- `sf_create_apex_batch` — Generate and deploy a complete Database.Batchable Apex batch class
|
|
40
|
+
- `sf_create_apex_scheduler` — Generate and deploy a Schedulable Apex class, with optional immediate scheduling
|
|
41
|
+
|
|
42
|
+
#### Deployment & Environment Management (5 new)
|
|
43
|
+
- `sf_rollback_deployment` — Cancel an in-progress metadata deployment by async job ID
|
|
44
|
+
- `sf_create_scratch_org` — Create a new scratch org using SF CLI (requires Dev Hub)
|
|
45
|
+
- `sf_create_sandbox` — Create a new sandbox (Developer, Developer_Pro, Partial, or Full)
|
|
46
|
+
- `sf_refresh_sandbox` — Refresh an existing sandbox to match the current production state
|
|
47
|
+
- `sf_export_package_xml` — Generate a package.xml manifest by listing all components of specified metadata types
|
|
48
|
+
|
|
49
|
+
#### Experience Cloud (3 new)
|
|
50
|
+
- `sf_create_experience_container` — Create a container region within an Experience Cloud page
|
|
51
|
+
- `sf_set_experience_site_login` — Configure login, self-registration, and SSO settings for an Experience site
|
|
52
|
+
- `sf_create_cms_content` — Create a CMS content item in a Salesforce CMS workspace
|
|
53
|
+
|
|
54
|
+
#### Data Management (4 new)
|
|
55
|
+
- `sf_export_records` — Export Salesforce records as CSV data via SOQL
|
|
56
|
+
- `sf_upsert_record` — Upsert a record using an External ID field for matching
|
|
57
|
+
- `sf_get_record` — Retrieve a single record by 15/18-char ID with optional field selection
|
|
58
|
+
- `sf_search_records` — Cross-object text search using SOSL with configurable search group and object list
|
|
59
|
+
|
|
60
|
+
#### Integrations & Events (3 new)
|
|
61
|
+
- `sf_create_platform_event_subscription` — Create an Apex trigger subscribing to a Platform Event channel
|
|
62
|
+
- `sf_create_change_data_capture` — Enable Change Data Capture for one or more Salesforce objects
|
|
63
|
+
- `sf_create_rest_resource` — Create and deploy an Apex REST resource (@RestResource) class
|
|
64
|
+
|
|
65
|
+
#### Monitoring & Observability (4 new)
|
|
66
|
+
- `sf_get_org_limits` — Retrieve current API and governor limit usage via the Limits REST API
|
|
67
|
+
- `sf_get_flow_errors` — Retrieve Flow interview fault records with error messages and related records
|
|
68
|
+
- `sf_get_apex_test_results` — Query Apex test results from recent test runs via Tooling API
|
|
69
|
+
- `sf_get_deployment_history` — Retrieve recent deployment history with status, component counts, and errors
|
|
70
|
+
|
|
71
|
+
#### Agentforce (3 new)
|
|
72
|
+
- `sf_create_agent_channel` — Create a BotChannel connecting an agent to a deployment channel (Embedded Service, Slack, etc.)
|
|
73
|
+
- `sf_clone_agent` — Clone an Agentforce Agent with all its topics, actions, and planner bundle
|
|
74
|
+
- `sf_export_agent` — Export a complete agent configuration as JSON for documentation or migration
|
|
75
|
+
|
|
76
|
+
#### OmniStudio (3 new)
|
|
77
|
+
- `sf_export_omnistudio_component` — Export any OmniStudio component as JSON for backup or migration
|
|
78
|
+
- `sf_import_omnistudio_component` — Import an OmniStudio component from previously exported JSON
|
|
79
|
+
- `sf_create_document_generation` — Create an OmniStudio Document Generation configuration (OmniDocumentGenerationConfig)
|
|
80
|
+
|
|
81
|
+
---
|
|
82
|
+
|
|
3
83
|
## [2.4.0] - 2026-05-28
|
|
4
84
|
|
|
5
85
|
### New Tools — 14 Additions Across 6 Categories
|
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# salesforce-metadata-mcp
|
|
2
2
|
|
|
3
|
-
[](https://npmjs.com/package/salesforce-metadata-mcp)
|
|
4
4
|
[](LICENSE)
|
|
5
5
|
[](https://modelcontextprotocol.io)
|
|
6
6
|
|
|
7
|
-
**The most comprehensive Salesforce MCP server.**
|
|
7
|
+
**The most comprehensive Salesforce MCP server.** 200+ tools for building, configuring, and automating Salesforce orgs directly from Claude or any MCP client — covering metadata, Apex, LWC, Agentforce agents, OmniStudio, OmniChannel, Experience Cloud, Field Service, Messaging, Einstein AI, audit trail, bulk data, users, reports, security, territories, sandboxes, CDC, REST resources, document generation, and more.
|
|
8
8
|
|
|
9
9
|
---
|
|
10
10
|
|
|
@@ -46,6 +46,26 @@ See [SETUP.md](SETUP.md) for all authentication methods and detailed setup instr
|
|
|
46
46
|
|
|
47
47
|
---
|
|
48
48
|
|
|
49
|
+
## What's New in v2.5.0
|
|
50
|
+
|
|
51
|
+
45 new tools across 11 categories:
|
|
52
|
+
|
|
53
|
+
- **Admin & Org Management** — Role hierarchy, reset password, freeze user, ETM territories, forecast hierarchy
|
|
54
|
+
- **Object Schema** — Delete custom objects/fields, roll-up summary fields, external ID fields, enable object features
|
|
55
|
+
- **Automation & Flows** — Update/clone flows, flow tests, custom invocable actions
|
|
56
|
+
- **Apex Development** — Search Apex source code, get/read debug logs, create batch and scheduler classes
|
|
57
|
+
- **Deployment & Environments** — Cancel deployments, create scratch orgs, create/refresh sandboxes, export package.xml
|
|
58
|
+
- **Experience Cloud** — Experience containers, site login config, CMS content creation
|
|
59
|
+
- **Data Management** — Export records to CSV, upsert by external ID, get record by ID, SOSL search
|
|
60
|
+
- **Integrations & Events** — Platform Event trigger subscriptions, CDC enablement, Apex REST resources
|
|
61
|
+
- **Monitoring** — Org limits usage, flow runtime errors, Apex test results, deployment history
|
|
62
|
+
- **Agentforce** — Agent channels, clone agents, export agent configurations
|
|
63
|
+
- **OmniStudio** — Export/import components, document generation templates
|
|
64
|
+
|
|
65
|
+
See [CHANGELOG.md](CHANGELOG.md) for full release notes.
|
|
66
|
+
|
|
67
|
+
---
|
|
68
|
+
|
|
49
69
|
## What's New in v2.4.0
|
|
50
70
|
|
|
51
71
|
14 new tools across 6 categories:
|