Salesforce Automation · Capability

Salesforce Tooling API — SObjects

Salesforce Tooling API — SObjects. 2 operations. Lead operation: List all Tooling API objects. Self-contained Naftiko capability covering one Salesforce Automation business surface.

Run with Naftiko Salesforce AutomationSObjects

What You Can Do

GET
Describetoolingglobal — List all Tooling API objects
/v1/sobjects
GET
Describetoolingobject — Describe a Tooling API object
/v1/sobjects/{sobjectname}

MCP Tools

list-all-tooling-api-objects

List all Tooling API objects

read-only idempotent
describe-tooling-api-object

Describe a Tooling API object

read-only idempotent

Capability Spec

salesforce-tooling-sobjects.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Salesforce Tooling API — SObjects
  description: 'Salesforce Tooling API — SObjects. 2 operations. Lead operation: List all Tooling API objects. Self-contained
    Naftiko capability covering one Salesforce Automation business surface.'
  tags:
  - Salesforce Automation
  - SObjects
  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-tooling-sobjects
    baseUri: https://{instance}.salesforce.com/services/data/v63.0/tooling
    description: Salesforce Tooling API — SObjects business capability. Self-contained, no shared references.
    resources:
    - name: sobjects
      path: /sobjects
      operations:
      - name: describetoolingglobal
        method: GET
        description: List all Tooling API objects
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: sobjects-sObjectName
      path: /sobjects/{sObjectName}
      operations:
      - name: describetoolingobject
        method: GET
        description: Describe a Tooling API object
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.SALESFORCE_AUTOMATION_API_KEY}}'
  exposes:
  - type: rest
    namespace: salesforce-tooling-sobjects-rest
    port: 8080
    description: REST adapter for Salesforce Tooling API — SObjects. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/sobjects
      name: sobjects
      description: REST surface for sobjects.
      operations:
      - method: GET
        name: describetoolingglobal
        description: List all Tooling API objects
        call: salesforce-tooling-sobjects.describetoolingglobal
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/sobjects/{sobjectname}
      name: sobjects-sobjectname
      description: REST surface for sobjects-sObjectName.
      operations:
      - method: GET
        name: describetoolingobject
        description: Describe a Tooling API object
        call: salesforce-tooling-sobjects.describetoolingobject
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: salesforce-tooling-sobjects-mcp
    port: 9090
    transport: http
    description: MCP adapter for Salesforce Tooling API — SObjects. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-all-tooling-api-objects
      description: List all Tooling API objects
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: salesforce-tooling-sobjects.describetoolingglobal
      outputParameters:
      - type: object
        mapping: $.
    - name: describe-tooling-api-object
      description: Describe a Tooling API object
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: salesforce-tooling-sobjects.describetoolingobject
      outputParameters:
      - type: object
        mapping: $.