Install @mcp-listing/salesforce-commerce-mcp from npm
Install exact version 1.0.0. No verified executable entrypoint is available, so use the package documentation to launch it.
npm install --save-exact @mcp-listing/salesforce-commerce-mcp@1.0.0The official Model Context Protocol adapter for Salesforce Commerce Cloud (B2C). Empower your AI agents to seamlessly navigate headless storefronts, manage e-commerce orders, and interact with complex SCAPI/OCAPI endpoints natively
Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.
Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.
Install exact version 1.0.0. No verified executable entrypoint is available, so use the package documentation to launch it.
npm install --save-exact @mcp-listing/salesforce-commerce-mcp@1.0.0| Canonical slug | salesforce-commerce-cloud-agentic-mcp-1546f0d8 | Deployment | Local Only |
|---|---|---|---|
| Canonical package | npm:@mcp-listing/salesforce-commerce-mcp | Repository | vinkius-labs/salesforce-commerce-mcp |
| First published | — | Latest release | — |
| Last security verification | — | Classification confidence | 90% |
| Publication | Draft | Official distribution | Not verified |
| Channel | Identifier | Current version | Versions | Source |
|---|---|---|---|---|
| npm | @mcp-listing/salesforce-commerce-mcp | 1.0.0 | 1 | Repository |
| Package | Version | Published / observed | Inventory | Security scan |
|---|---|---|---|---|
| npm@mcp-listing/salesforce-commerce-mcp | 1.0.0Current | Sep 5, 2026 | 8 toolsSucceeded · 0 resources · 0 prompts | Evidence restricted |
Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.
No public current-version evidence is available yet.
| Tool | Category | Annotations | Risk |
|---|---|---|---|
sf_list_pricebooks[INSTRUCTIONS] Retrieves Pricebook2 records. Returns price book name, description, active status, and IsStandard flag. Every Salesforce org has a Standard Price Book. Additional price books allow different pricing for channels, regions, or customer tiers (e.g., "Partner Pricing", "Enterprise Discount"). Use to find price book IDs before viewing entries.
List all price books in Salesforce with name, description, active status, and whether it is the standard price book. [READ-ONLY]Input schema{
"type": "object",
"properties": {
"limit": {
"type": "number",
"description": "Maximum results (default: 20)"
}
}
}Annotations{
"readOnlyHint": true,
"destructiveHint": false
} | — | Read onlyNon-destructive | — |
sf_order_items[INSTRUCTIONS] Retrieves OrderItem records for a specific order. Returns product name, quantity, unit price, total price, and description per line item. Use when the user asks "what is in this order?", needs to review order composition, or wants to verify pricing before activation.
Get all line items of a specific Salesforce order — products, quantities, unit prices, and total prices per item. [READ-ONLY]Input schema{
"type": "object",
"properties": {
"orderId": {
"type": "string",
"description": "Order ID (18-char Salesforce ID)"
}
},
"required": [
"orderId"
]
}Annotations{
"readOnlyHint": true,
"destructiveHint": false
} | — | Read onlyNon-destructive | — |
sf_orders_by_status[INSTRUCTIONS] Filters Order records by Status field, sorted by total amount descending. Use for order management: "how many draft orders need activation?", "show all activated orders", or for revenue analysis by order status.
Get Salesforce orders filtered by status (Draft or Activated) for order management and fulfillment tracking. [READ-ONLY]Input schema{
"type": "object",
"properties": {
"status": {
"type": "string",
"description": "Order status: Draft or Activated"
},
"limit": {
"type": "number",
"description": "Maximum results (default: 20)"
}
},
"required": [
"status"
]
}Annotations{
"readOnlyHint": true,
"destructiveHint": false
} | — | Read onlyNon-destructive | — |
sf_pricebook_entries[INSTRUCTIONS] Retrieves PricebookEntry records for a specific price book. Returns product name, product code, unit price, currency, and active status. Price book entries define the actual price of a product in a specific context (channel, region, tier). Use to check pricing, compare across price books, or verify product availability in a specific price book.
Get all product price entries within a specific price book — products with their unit prices and active status. [READ-ONLY]Input schema{
"type": "object",
"properties": {
"pricebookId": {
"type": "string",
"description": "Price Book ID (18-char — get from sf_list_pricebooks)"
},
"limit": {
"type": "number",
"description": "Maximum results (default: 20)"
}
},
"required": [
"pricebookId"
]
}Annotations{
"readOnlyHint": true,
"destructiveHint": false
} | — | Read onlyNon-destructive | — |
sf_products_by_family[INSTRUCTIONS] Filters active Product2 records by the Family field. Returns products within a category (e.g., "Hardware", "Software", "Services"). Use when the user asks about products in a specific category, wants a category-level view, or needs to browse the catalog by family.
Get all active products within a specific product family for category-level catalog browsing. [READ-ONLY]Input schema{
"type": "object",
"properties": {
"family": {
"type": "string",
"description": "Product family name (e.g., Hardware, Software, Services)"
},
"limit": {
"type": "number",
"description": "Maximum results (default: 20)"
}
},
"required": [
"family"
]
}Annotations{
"readOnlyHint": true,
"destructiveHint": false
} | — | Read onlyNon-destructive | — |
sf_search_orders[INSTRUCTIONS] Queries Order sObjects. Returns order number, account name, status (Draft/Activated), total amount, effective date, and order owner. Orders represent confirmed customer transactions. Use when the user asks about customer orders, wants to look up a specific order number, or needs to review order history.
Search Salesforce orders by order number or account name to find transactions with status, total, and dates. [READ-ONLY]Input schema{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Order number or account name"
},
"limit": {
"type": "number",
"description": "Maximum results (default: 20)"
}
},
"required": [
"query"
]
}Annotations{
"readOnlyHint": true,
"destructiveHint": false
} | — | Read onlyNon-destructive | — |
sf_search_products[INSTRUCTIONS] Queries Product2 sObjects via SOSL. Returns product name, product code (SKU), product family, description, and whether the product is active. Products define what can be sold — they are linked to price books for pricing. Use when the user asks about product catalog, wants to find a specific product, or needs product IDs for orders.
Search the Salesforce product catalog by name or product code to find items with family, description, and active status. [READ-ONLY]Input schema{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Product name or product code"
},
"limit": {
"type": "number",
"description": "Maximum results (default: 20)"
}
},
"required": [
"query"
]
}Annotations{
"readOnlyHint": true,
"destructiveHint": false
} | — | Read onlyNon-destructive | — |
sf_update_product[INSTRUCTIONS] Patches a Product2 sObject. Common operations: set IsActive to false to discontinue a product, change Family to reclassify, update Description, or rename. Only specified fields change.
Update a product in the Salesforce catalog — change name, description, active status, product code, or family. [DESTRUCTIVE]Input schema{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Product ID (18-char Salesforce ID)"
},
"Name": {
"type": "string",
"description": "New name"
},
"Description": {
"type": "string",
"description": "New description"
},
"IsActive": {
"type": "boolean",
"description": "Active/inactive status"
},
"Family": {
"type": "string",
"description": "Product family"
}
},
"required": [
"id"
]
}Annotations{
"destructiveHint": true
} | — | Destructive | — |
| Endpoint | Transport | Authentication | Health | Observed |
|---|---|---|---|---|
| No verified remote endpoint is linked. | ||||
Install the selected package version with: npm install --save-exact @mcp-listing/salesforce-commerce-mcp@1.0.0
Salesforce Commerce Cloud Agentic MCP Server exposed 8 tools during independent protocol observation, including sf_list_pricebooks, sf_order_items, sf_orders_by_status, sf_pricebook_entries, sf_products_by_family, sf_search_orders, sf_search_products, sf_update_product.
The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.
These internal links are derived from strong identity fields such as the implementation name, package, repository, vendor, and listing name—not generic description prose.
Association is based on retained identity fields; it does not by itself prove first-party publication.
Curated product and capability guides containing this catalog record.