Salesforce Automation · Capability

Salesforce Invocable Actions API — Standard Actions

Salesforce Invocable Actions API — Standard Actions. 3 operations. Lead operation: List standard invocable actions. Self-contained Naftiko capability covering one Salesforce Automation business surface.

Run with Naftiko Salesforce AutomationStandard Actions

What You Can Do

GET
Getstandardactions — List standard invocable actions
/v1/actions/standard
GET
Describestandardaction — Describe a standard action
/v1/actions/standard/{actionname}
POST
Invokestandardaction — Invoke a standard action
/v1/actions/standard/{actionname}

MCP Tools

list-standard-invocable-actions

List standard invocable actions

read-only idempotent
describe-standard-action

Describe a standard action

read-only idempotent
invoke-standard-action

Invoke a standard action

Capability Spec

salesforce-invocable-actions-standard-actions.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Salesforce Invocable Actions API — Standard Actions
  description: 'Salesforce Invocable Actions API — Standard Actions. 3 operations. Lead operation: List standard invocable
    actions. Self-contained Naftiko capability covering one Salesforce Automation business surface.'
  tags:
  - Salesforce Automation
  - Standard Actions
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SALESFORCE_AUTOMATION_API_KEY: SALESFORCE_AUTOMATION_API_KEY
capability:
  consumes:
  - type: http
    namespace: salesforce-invocable-actions-standard-actions
    baseUri: https://{instance}.salesforce.com/services/data/v63.0
    description: Salesforce Invocable Actions API — Standard Actions business capability. Self-contained, no shared references.
    resources:
    - name: actions-standard
      path: /actions/standard
      operations:
      - name: getstandardactions
        method: GET
        description: List standard invocable actions
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: actions-standard-actionName
      path: /actions/standard/{actionName}
      operations:
      - name: describestandardaction
        method: GET
        description: Describe a standard action
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: actionName
          in: path
          type: string
          description: The API name of the standard action (e.g., emailSimple, chatterPost, submit)
          required: true
      - name: invokestandardaction
        method: POST
        description: Invoke a standard action
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: actionName
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.SALESFORCE_AUTOMATION_API_KEY}}'
  exposes:
  - type: rest
    namespace: salesforce-invocable-actions-standard-actions-rest
    port: 8080
    description: REST adapter for Salesforce Invocable Actions API — Standard Actions. One Spectral-compliant resource per
      consumed operation, prefixed with /v1.
    resources:
    - path: /v1/actions/standard
      name: actions-standard
      description: REST surface for actions-standard.
      operations:
      - method: GET
        name: getstandardactions
        description: List standard invocable actions
        call: salesforce-invocable-actions-standard-actions.getstandardactions
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/actions/standard/{actionname}
      name: actions-standard-actionname
      description: REST surface for actions-standard-actionName.
      operations:
      - method: GET
        name: describestandardaction
        description: Describe a standard action
        call: salesforce-invocable-actions-standard-actions.describestandardaction
        with:
          actionName: rest.actionName
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: invokestandardaction
        description: Invoke a standard action
        call: salesforce-invocable-actions-standard-actions.invokestandardaction
        with:
          actionName: rest.actionName
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: salesforce-invocable-actions-standard-actions-mcp
    port: 9090
    transport: http
    description: MCP adapter for Salesforce Invocable Actions API — Standard Actions. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: list-standard-invocable-actions
      description: List standard invocable actions
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: salesforce-invocable-actions-standard-actions.getstandardactions
      outputParameters:
      - type: object
        mapping: $.
    - name: describe-standard-action
      description: Describe a standard action
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: salesforce-invocable-actions-standard-actions.describestandardaction
      with:
        actionName: tools.actionName
      outputParameters:
      - type: object
        mapping: $.
    - name: invoke-standard-action
      description: Invoke a standard action
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: salesforce-invocable-actions-standard-actions.invokestandardaction
      with:
        actionName: tools.actionName
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.