Salesforce · Capability

Salesforce — All

Salesforce — All. 4 operations. Lead operation: Salesforce Get All Jobs. Self-contained Naftiko capability covering one Salesforce business surface.

Run with Naftiko SalesforceAll

What You Can Do

GET
Getalljobs — Salesforce Get All Jobs
/v1/data/v64-0/jobs/ingest
GET
Getallqueryjobs — Salesforce Get All Query Jobs
/v1/data/v64-0/jobs/query
GET
Getallnavigationitems — Salesforce Get All Navigation Items
/v1/data/v64-0/ui-api/nav-items
GET
Getvaluesforallpicklistfieldsofarecordtype — Salesforce Get Values for All Picklist Fields of a Record Type
/v1/data/v64-0/ui-api/object-info/{sobject-api-name}/picklist-values/{record-type-id}

MCP Tools

salesforce-get-all-jobs

Salesforce Get All Jobs

read-only idempotent
salesforce-get-all-query-jobs

Salesforce Get All Query Jobs

read-only idempotent
salesforce-get-all-navigation-items

Salesforce Get All Navigation Items

read-only idempotent
salesforce-get-values-all-picklist

Salesforce Get Values for All Picklist Fields of a Record Type

read-only idempotent

Capability Spec

salesforce-all.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Salesforce — All
  description: 'Salesforce — All. 4 operations. Lead operation: Salesforce Get All Jobs. Self-contained Naftiko capability
    covering one Salesforce business surface.'
  tags:
  - Salesforce
  - All
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SALESFORCE_API_KEY: SALESFORCE_API_KEY
capability:
  consumes:
  - type: http
    namespace: salesforce-all
    baseUri: https://login.salesforce.com
    description: Salesforce — All business capability. Self-contained, no shared references.
    resources:
    - name: data-v64.0-jobs-ingest
      path: /data/v64.0/jobs/ingest
      operations:
      - name: getalljobs
        method: GET
        description: Salesforce Get All Jobs
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: data-v64.0-jobs-query
      path: /data/v64.0/jobs/query
      operations:
      - name: getallqueryjobs
        method: GET
        description: Salesforce Get All Query Jobs
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: isPkChunkingEnabled
          in: query
          type: boolean
          description: If set to true, the request only returns information about jobs where PK Chunking is enabled
          required: true
        - name: jobType
          in: query
          type: string
          description: BigObjectIngest Classic V2Query
          required: true
        - name: concurrencyMode
          in: query
          type: string
          description: serial parallel
          required: true
        - name: queryLocator
          in: query
          type: string
          description: use the value from the nextRecordsUrl from the previous set
          required: true
        - name: Content-Type
          in: header
          type: string
          required: true
    - name: data-v64.0-ui-api-nav-items
      path: /data/v64.0/ui-api/nav-items
      operations:
      - name: getallnavigationitems
        method: GET
        description: Salesforce Get All Navigation Items
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: data-v64.0-ui-api-object-info-SOBJECT_API_NAME-picklist-values-RECORD_TYPE_ID
      path: /data/v64.0/ui-api/object-info/{SOBJECT_API_NAME}/picklist-values/{RECORD_TYPE_ID}
      operations:
      - name: getvaluesforallpicklistfieldsofarecordtype
        method: GET
        description: Salesforce Get Values for All Picklist Fields of a Record Type
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: SOBJECT_API_NAME
          in: path
          type: string
          description: Object API Name
          required: true
        - name: RECORD_TYPE_ID
          in: path
          type: string
          description: Record type Id. Use `012000000000000AAA` as default when there are no custom record types.
          required: true
    authentication:
      type: bearer
      token: '{{env.SALESFORCE_API_KEY}}'
  exposes:
  - type: rest
    namespace: salesforce-all-rest
    port: 8080
    description: REST adapter for Salesforce — All. One Spectral-compliant resource per consumed operation, prefixed with
      /v1.
    resources:
    - path: /v1/data/v64-0/jobs/ingest
      name: data-v64-0-jobs-ingest
      description: REST surface for data-v64.0-jobs-ingest.
      operations:
      - method: GET
        name: getalljobs
        description: Salesforce Get All Jobs
        call: salesforce-all.getalljobs
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/data/v64-0/jobs/query
      name: data-v64-0-jobs-query
      description: REST surface for data-v64.0-jobs-query.
      operations:
      - method: GET
        name: getallqueryjobs
        description: Salesforce Get All Query Jobs
        call: salesforce-all.getallqueryjobs
        with:
          isPkChunkingEnabled: rest.isPkChunkingEnabled
          jobType: rest.jobType
          concurrencyMode: rest.concurrencyMode
          queryLocator: rest.queryLocator
          Content-Type: rest.Content-Type
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/data/v64-0/ui-api/nav-items
      name: data-v64-0-ui-api-nav-items
      description: REST surface for data-v64.0-ui-api-nav-items.
      operations:
      - method: GET
        name: getallnavigationitems
        description: Salesforce Get All Navigation Items
        call: salesforce-all.getallnavigationitems
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/data/v64-0/ui-api/object-info/{sobject-api-name}/picklist-values/{record-type-id}
      name: data-v64-0-ui-api-object-info-sobject-api-name-picklist-values-record-type-id
      description: REST surface for data-v64.0-ui-api-object-info-SOBJECT_API_NAME-picklist-values-RECORD_TYPE_ID.
      operations:
      - method: GET
        name: getvaluesforallpicklistfieldsofarecordtype
        description: Salesforce Get Values for All Picklist Fields of a Record Type
        call: salesforce-all.getvaluesforallpicklistfieldsofarecordtype
        with:
          SOBJECT_API_NAME: rest.SOBJECT_API_NAME
          RECORD_TYPE_ID: rest.RECORD_TYPE_ID
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: salesforce-all-mcp
    port: 9090
    transport: http
    description: MCP adapter for Salesforce — All. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: salesforce-get-all-jobs
      description: Salesforce Get All Jobs
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: salesforce-all.getalljobs
      outputParameters:
      - type: object
        mapping: $.
    - name: salesforce-get-all-query-jobs
      description: Salesforce Get All Query Jobs
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: salesforce-all.getallqueryjobs
      with:
        isPkChunkingEnabled: tools.isPkChunkingEnabled
        jobType: tools.jobType
        concurrencyMode: tools.concurrencyMode
        queryLocator: tools.queryLocator
        Content-Type: tools.Content-Type
      outputParameters:
      - type: object
        mapping: $.
    - name: salesforce-get-all-navigation-items
      description: Salesforce Get All Navigation Items
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: salesforce-all.getallnavigationitems
      outputParameters:
      - type: object
        mapping: $.
    - name: salesforce-get-values-all-picklist
      description: Salesforce Get Values for All Picklist Fields of a Record Type
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: salesforce-all.getvaluesforallpicklistfieldsofarecordtype
      with:
        SOBJECT_API_NAME: tools.SOBJECT_API_NAME
        RECORD_TYPE_ID: tools.RECORD_TYPE_ID
      outputParameters:
      - type: object
        mapping: $.