Apigee · Capability

Apigee Integrations API — Integrations

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

Run with Naftiko ApigeeIntegrations

What You Can Do

GET
Listintegrations — Apigee List Integrations
/v1/projects/{projectid}/locations/{locationid}/products/{productid}/integrations
DELETE
Deleteintegration — Apigee Delete an Integration
/v1/projects/{projectid}/locations/{locationid}/products/{productid}/integrations/{integrationid}
POST
Executeintegration — Apigee Execute an Integration
/v1/projects/{projectid}/locations/{locationid}/products/{productid}/integrations/integrationid-execute
POST
Scheduleintegration — Apigee Schedule an Integration Execution
/v1/projects/{projectid}/locations/{locationid}/products/{productid}/integrations/integrationid-schedule

MCP Tools

apigee-list-integrations

Apigee List Integrations

read-only idempotent
apigee-delete-integration

Apigee Delete an Integration

idempotent
apigee-execute-integration

Apigee Execute an Integration

apigee-schedule-integration-execution

Apigee Schedule an Integration Execution

Capability Spec

integrations-integrations.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Apigee Integrations API — Integrations
  description: 'Apigee Integrations API — Integrations. 4 operations. Lead operation: Apigee List Integrations. Self-contained
    Naftiko capability covering one Apigee business surface.'
  tags:
  - Apigee
  - Integrations
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    APIGEE_API_KEY: APIGEE_API_KEY
capability:
  consumes:
  - type: http
    namespace: integrations-integrations
    baseUri: https://integrations.googleapis.com/v1
    description: Apigee Integrations API — Integrations business capability. Self-contained, no shared references.
    resources:
    - name: projects-projectId-locations-locationId-products-productId-integrations
      path: /projects/{projectId}/locations/{locationId}/products/{productId}/integrations
      operations:
      - name: listintegrations
        method: GET
        description: Apigee List Integrations
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: filter
          in: query
          type: string
          description: Filter expression to narrow the results.
        - name: orderBy
          in: query
          type: string
          description: Field to order results by.
    - name: projects-projectId-locations-locationId-products-productId-integrations-integrat
      path: /projects/{projectId}/locations/{locationId}/products/{productId}/integrations/{integrationId}
      operations:
      - name: deleteintegration
        method: DELETE
        description: Apigee Delete an Integration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: projects-projectId-locations-locationId-products-productId-integrations-integrat
      path: /projects/{projectId}/locations/{locationId}/products/{productId}/integrations/{integrationId}:execute
      operations:
      - name: executeintegration
        method: POST
        description: Apigee Execute an Integration
        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-integrations-integrat
      path: /projects/{projectId}/locations/{locationId}/products/{productId}/integrations/{integrationId}:schedule
      operations:
      - name: scheduleintegration
        method: POST
        description: Apigee Schedule an Integration Execution
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.APIGEE_API_KEY}}'
  exposes:
  - type: rest
    namespace: integrations-integrations-rest
    port: 8080
    description: REST adapter for Apigee Integrations API — Integrations. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/projects/{projectid}/locations/{locationid}/products/{productid}/integrations
      name: projects-projectid-locations-locationid-products-productid-integrations
      description: REST surface for projects-projectId-locations-locationId-products-productId-integrations.
      operations:
      - method: GET
        name: listintegrations
        description: Apigee List Integrations
        call: integrations-integrations.listintegrations
        with:
          filter: rest.filter
          orderBy: rest.orderBy
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/projects/{projectid}/locations/{locationid}/products/{productid}/integrations/{integrationid}
      name: projects-projectid-locations-locationid-products-productid-integrations-integrat
      description: REST surface for projects-projectId-locations-locationId-products-productId-integrations-integrat.
      operations:
      - method: DELETE
        name: deleteintegration
        description: Apigee Delete an Integration
        call: integrations-integrations.deleteintegration
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/projects/{projectid}/locations/{locationid}/products/{productid}/integrations/integrationid-execute
      name: projects-projectid-locations-locationid-products-productid-integrations-integrat
      description: REST surface for projects-projectId-locations-locationId-products-productId-integrations-integrat.
      operations:
      - method: POST
        name: executeintegration
        description: Apigee Execute an Integration
        call: integrations-integrations.executeintegration
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/projects/{projectid}/locations/{locationid}/products/{productid}/integrations/integrationid-schedule
      name: projects-projectid-locations-locationid-products-productid-integrations-integrat
      description: REST surface for projects-projectId-locations-locationId-products-productId-integrations-integrat.
      operations:
      - method: POST
        name: scheduleintegration
        description: Apigee Schedule an Integration Execution
        call: integrations-integrations.scheduleintegration
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: integrations-integrations-mcp
    port: 9090
    transport: http
    description: MCP adapter for Apigee Integrations API — Integrations. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: apigee-list-integrations
      description: Apigee List Integrations
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: integrations-integrations.listintegrations
      with:
        filter: tools.filter
        orderBy: tools.orderBy
      outputParameters:
      - type: object
        mapping: $.
    - name: apigee-delete-integration
      description: Apigee Delete an Integration
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: integrations-integrations.deleteintegration
      outputParameters:
      - type: object
        mapping: $.
    - name: apigee-execute-integration
      description: Apigee Execute an Integration
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: integrations-integrations.executeintegration
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: apigee-schedule-integration-execution
      description: Apigee Schedule an Integration Execution
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: integrations-integrations.scheduleintegration
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.