← Salesforce Commerce Cloud Agentic MCP

Salesforce Commerce Cloud Agentic MCP 1.0.0

npm · @mcp-listing/salesforce-commerce-mcp · current release

8
Tools
0
Resources
0
Templates
0
Prompts

Observation

Observed 2026-08-26T10:22:31.592Z using mcpSecurity-inventory. Status: succeeded. Negotiated protocol: 2025-06-18.

Server capabilities
{
  "tools": {}
}

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 only · Non-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 only · Non-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 only · Non-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 only · Non-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 only · Non-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 only · Non-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 only · Non-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

Resource templates 0

Prompts 0

Let’s talk about MCP security.

Share your details and our security team will contact you.