Salesforce · Capability

Salesforce — Detail

Salesforce — Detail. 2 operations. Lead operation: Salesforce Data Category Detail. Self-contained Naftiko capability covering one Salesforce business surface.

Run with Naftiko SalesforceDetail

What You Can Do

GET
Datacategorydetail — Salesforce Data Category Detail
/v1/data/v64-0/support/datacategorygroups/{group}/datacategories/{category}
GET
Getrecorddetailpageactions — Salesforce Get Record Detail Page Actions
/v1/data/v64-0/ui-api/actions/record/{record-ids}

MCP Tools

salesforce-data-category-detail

Salesforce Data Category Detail

read-only idempotent
salesforce-get-record-detail-page

Salesforce Get Record Detail Page Actions

read-only idempotent

Capability Spec

salesforce-detail.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Salesforce — Detail
  description: 'Salesforce — Detail. 2 operations. Lead operation: Salesforce Data Category Detail. Self-contained Naftiko
    capability covering one Salesforce business surface.'
  tags:
  - Salesforce
  - Detail
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SALESFORCE_API_KEY: SALESFORCE_API_KEY
capability:
  consumes:
  - type: http
    namespace: salesforce-detail
    baseUri: https://login.salesforce.com
    description: Salesforce — Detail business capability. Self-contained, no shared references.
    resources:
    - name: data-v64.0-support-dataCategoryGroups-GROUP-dataCategories-CATEGORY
      path: /data/v64.0/support/dataCategoryGroups/{GROUP}/dataCategories/{CATEGORY}
      operations:
      - name: datacategorydetail
        method: GET
        description: Salesforce Data Category Detail
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: GROUP
          in: path
          type: string
          required: true
        - name: CATEGORY
          in: path
          type: string
          required: true
        - name: Content-Type
          in: header
          type: string
          required: true
    - name: data-v64.0-ui-api-actions-record-RECORD_IDS
      path: /data/v64.0/ui-api/actions/record/{RECORD_IDS}
      operations:
      - name: getrecorddetailpageactions
        method: GET
        description: Salesforce Get Record Detail Page Actions
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: RECORD_IDS
          in: path
          type: string
          description: A single record ID, or a comma-delimited list of record IDs.
          required: true
    authentication:
      type: bearer
      token: '{{env.SALESFORCE_API_KEY}}'
  exposes:
  - type: rest
    namespace: salesforce-detail-rest
    port: 8080
    description: REST adapter for Salesforce — Detail. One Spectral-compliant resource per consumed operation, prefixed with
      /v1.
    resources:
    - path: /v1/data/v64-0/support/datacategorygroups/{group}/datacategories/{category}
      name: data-v64-0-support-datacategorygroups-group-datacategories-category
      description: REST surface for data-v64.0-support-dataCategoryGroups-GROUP-dataCategories-CATEGORY.
      operations:
      - method: GET
        name: datacategorydetail
        description: Salesforce Data Category Detail
        call: salesforce-detail.datacategorydetail
        with:
          GROUP: rest.GROUP
          CATEGORY: rest.CATEGORY
          Content-Type: rest.Content-Type
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/data/v64-0/ui-api/actions/record/{record-ids}
      name: data-v64-0-ui-api-actions-record-record-ids
      description: REST surface for data-v64.0-ui-api-actions-record-RECORD_IDS.
      operations:
      - method: GET
        name: getrecorddetailpageactions
        description: Salesforce Get Record Detail Page Actions
        call: salesforce-detail.getrecorddetailpageactions
        with:
          RECORD_IDS: rest.RECORD_IDS
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: salesforce-detail-mcp
    port: 9090
    transport: http
    description: MCP adapter for Salesforce — Detail. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: salesforce-data-category-detail
      description: Salesforce Data Category Detail
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: salesforce-detail.datacategorydetail
      with:
        GROUP: tools.GROUP
        CATEGORY: tools.CATEGORY
        Content-Type: tools.Content-Type
      outputParameters:
      - type: object
        mapping: $.
    - name: salesforce-get-record-detail-page
      description: Salesforce Get Record Detail Page Actions
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: salesforce-detail.getrecorddetailpageactions
      with:
        RECORD_IDS: tools.RECORD_IDS
      outputParameters:
      - type: object
        mapping: $.