Apigee · Capability

Apigee Integrations API — SFDC Instances

Apigee Integrations API — SFDC Instances. 5 operations. Lead operation: Apigee List SFDC Instances. Self-contained Naftiko capability covering one Apigee business surface.

Run with Naftiko ApigeeSFDC Instances

What You Can Do

GET
Listsfdcinstances — Apigee List SFDC Instances
/v1/projects/{projectid}/locations/{locationid}/products/{productid}/sfdcinstances
POST
Createsfdcinstance — Apigee Create an SFDC Instance
/v1/projects/{projectid}/locations/{locationid}/products/{productid}/sfdcinstances
GET
Getsfdcinstance — Apigee Get an SFDC Instance
/v1/projects/{projectid}/locations/{locationid}/products/{productid}/sfdcinstances/{sfdcinstanceid}
PATCH
Updatesfdcinstance — Apigee Update an SFDC Instance
/v1/projects/{projectid}/locations/{locationid}/products/{productid}/sfdcinstances/{sfdcinstanceid}
DELETE
Deletesfdcinstance — Apigee Delete an SFDC Instance
/v1/projects/{projectid}/locations/{locationid}/products/{productid}/sfdcinstances/{sfdcinstanceid}

MCP Tools

apigee-list-sfdc-instances

Apigee List SFDC Instances

read-only idempotent
apigee-create-sfdc-instance

Apigee Create an SFDC Instance

apigee-get-sfdc-instance

Apigee Get an SFDC Instance

read-only idempotent
apigee-update-sfdc-instance

Apigee Update an SFDC Instance

idempotent
apigee-delete-sfdc-instance

Apigee Delete an SFDC Instance

idempotent

Capability Spec

integrations-sfdc-instances.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Apigee Integrations API — SFDC Instances
  description: 'Apigee Integrations API — SFDC Instances. 5 operations. Lead operation: Apigee List SFDC Instances. Self-contained
    Naftiko capability covering one Apigee business surface.'
  tags:
  - Apigee
  - SFDC Instances
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    APIGEE_API_KEY: APIGEE_API_KEY
capability:
  consumes:
  - type: http
    namespace: integrations-sfdc-instances
    baseUri: https://integrations.googleapis.com/v1
    description: Apigee Integrations API — SFDC Instances business capability. Self-contained, no shared references.
    resources:
    - name: projects-projectId-locations-locationId-products-productId-sfdcInstances
      path: /projects/{projectId}/locations/{locationId}/products/{productId}/sfdcInstances
      operations:
      - name: listsfdcinstances
        method: GET
        description: Apigee List SFDC Instances
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createsfdcinstance
        method: POST
        description: Apigee Create an SFDC Instance
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: projects-projectId-locations-locationId-products-productId-sfdcInstances-sfdcIns
      path: /projects/{projectId}/locations/{locationId}/products/{productId}/sfdcInstances/{sfdcInstanceId}
      operations:
      - name: getsfdcinstance
        method: GET
        description: Apigee Get an SFDC Instance
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatesfdcinstance
        method: PATCH
        description: Apigee Update an SFDC Instance
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: updateMask
          in: query
          type: string
          description: Comma-separated list of fields to update.
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletesfdcinstance
        method: DELETE
        description: Apigee Delete an SFDC Instance
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.APIGEE_API_KEY}}'
  exposes:
  - type: rest
    namespace: integrations-sfdc-instances-rest
    port: 8080
    description: REST adapter for Apigee Integrations API — SFDC Instances. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/projects/{projectid}/locations/{locationid}/products/{productid}/sfdcinstances
      name: projects-projectid-locations-locationid-products-productid-sfdcinstances
      description: REST surface for projects-projectId-locations-locationId-products-productId-sfdcInstances.
      operations:
      - method: GET
        name: listsfdcinstances
        description: Apigee List SFDC Instances
        call: integrations-sfdc-instances.listsfdcinstances
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createsfdcinstance
        description: Apigee Create an SFDC Instance
        call: integrations-sfdc-instances.createsfdcinstance
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/projects/{projectid}/locations/{locationid}/products/{productid}/sfdcinstances/{sfdcinstanceid}
      name: projects-projectid-locations-locationid-products-productid-sfdcinstances-sfdcins
      description: REST surface for projects-projectId-locations-locationId-products-productId-sfdcInstances-sfdcIns.
      operations:
      - method: GET
        name: getsfdcinstance
        description: Apigee Get an SFDC Instance
        call: integrations-sfdc-instances.getsfdcinstance
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updatesfdcinstance
        description: Apigee Update an SFDC Instance
        call: integrations-sfdc-instances.updatesfdcinstance
        with:
          updateMask: rest.updateMask
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletesfdcinstance
        description: Apigee Delete an SFDC Instance
        call: integrations-sfdc-instances.deletesfdcinstance
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: integrations-sfdc-instances-mcp
    port: 9090
    transport: http
    description: MCP adapter for Apigee Integrations API — SFDC Instances. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: apigee-list-sfdc-instances
      description: Apigee List SFDC Instances
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: integrations-sfdc-instances.listsfdcinstances
      outputParameters:
      - type: object
        mapping: $.
    - name: apigee-create-sfdc-instance
      description: Apigee Create an SFDC Instance
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: integrations-sfdc-instances.createsfdcinstance
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: apigee-get-sfdc-instance
      description: Apigee Get an SFDC Instance
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: integrations-sfdc-instances.getsfdcinstance
      outputParameters:
      - type: object
        mapping: $.
    - name: apigee-update-sfdc-instance
      description: Apigee Update an SFDC Instance
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: integrations-sfdc-instances.updatesfdcinstance
      with:
        updateMask: tools.updateMask
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: apigee-delete-sfdc-instance
      description: Apigee Delete an SFDC Instance
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: integrations-sfdc-instances.deletesfdcinstance
      outputParameters:
      - type: object
        mapping: $.