MCP server intelligence profile

Salesforce Commerce Cloud Agentic MCP Server

The 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

Local Onlyvinkius-labs
Awaiting current scanNpm · 1.0.0

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

1Distribution channel
8Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

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.0

Identity

Canonical slugsalesforce-commerce-cloud-agentic-mcp-1546f0d8DeploymentLocal Only
Canonical packagenpm:@mcp-listing/salesforce-commerce-mcpRepositoryvinkius-labs/salesforce-commerce-mcp
First publishedLatest release
Last security verificationClassification confidence90%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
npm@mcp-listing/salesforce-commerce-mcp1.0.01Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npm@mcp-listing/salesforce-commerce-mcp1.0.0CurrentSep 5, 20268 toolsSucceeded · 0 resources · 0 promptsEvidence restricted
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

No public current-version evidence is available yet.

Current protocol inventory

2025-06-18Negotiated protocol
salesforce-commerce-mcpServer-reported name
1Capability groups
Aug 26, 2026Observed

Tools 8

ToolCategoryAnnotationsRisk
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

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

Salesforce Commerce Cloud Agentic MCP Server questions

How do I install Salesforce Commerce Cloud Agentic MCP Server?

Install the selected package version with: npm install --save-exact @mcp-listing/salesforce-commerce-mcp@1.0.0

What tools does Salesforce Commerce Cloud Agentic MCP Server provide?

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.

Is Salesforce Commerce Cloud Agentic MCP Server secure?

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

Company and product intelligence

These internal links are derived from strong identity fields such as the implementation name, package, repository, vendor, and listing name—not generic description prose.

Associated company landscape

Salesforce intelligence →

Association is based on retained identity fields; it does not by itself prove first-party publication.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Official vs Community MCP Servers

Let’s talk about MCP security.

Share your details and our security team will contact you.