Apigee · Capability

Apigee API Management — API Proxies

Apigee API Management — API Proxies. 5 operations. Lead operation: Apigee List API Proxies. Self-contained Naftiko capability covering one Apigee business surface.

Run with Naftiko ApigeeAPI Proxies

What You Can Do

GET
Listapiproxies — Apigee List API Proxies
/v1/organizations/{organizationid}/apis
POST
Createapiproxy — Apigee Create an API Proxy
/v1/organizations/{organizationid}/apis
GET
Getapiproxy — Apigee Get an API Proxy
/v1/organizations/{organizationid}/apis/{apiid}
DELETE
Deleteapiproxy — Apigee Delete an API Proxy
/v1/organizations/{organizationid}/apis/{apiid}
PATCH
Patchapiproxy — Apigee Update an API Proxy
/v1/organizations/{organizationid}/apis/{apiid}

MCP Tools

apigee-list-api-proxies

Apigee List API Proxies

read-only idempotent
apigee-create-api-proxy

Apigee Create an API Proxy

apigee-get-api-proxy

Apigee Get an API Proxy

read-only idempotent
apigee-delete-api-proxy

Apigee Delete an API Proxy

idempotent
apigee-update-api-proxy

Apigee Update an API Proxy

idempotent

Capability Spec

api-management-api-proxies.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Apigee API Management — API Proxies
  description: 'Apigee API Management — API Proxies. 5 operations. Lead operation: Apigee List API Proxies. Self-contained
    Naftiko capability covering one Apigee business surface.'
  tags:
  - Apigee
  - API Proxies
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    APIGEE_API_KEY: APIGEE_API_KEY
capability:
  consumes:
  - type: http
    namespace: api-management-api-proxies
    baseUri: https://apigee.googleapis.com/v1
    description: Apigee API Management — API Proxies business capability. Self-contained, no shared references.
    resources:
    - name: organizations-organizationId-apis
      path: /organizations/{organizationId}/apis
      operations:
      - name: listapiproxies
        method: GET
        description: Apigee List API Proxies
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createapiproxy
        method: POST
        description: Apigee Create an API Proxy
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: name
          in: query
          type: string
          description: Name of the API proxy. Must be unique within the organization.
          required: true
        - name: action
          in: query
          type: string
          description: Action to perform when importing an API proxy configuration bundle. Set to "import" when uploading
            a ZIP bundle.
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: organizations-organizationId-apis-apiId
      path: /organizations/{organizationId}/apis/{apiId}
      operations:
      - name: getapiproxy
        method: GET
        description: Apigee Get an API Proxy
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: deleteapiproxy
        method: DELETE
        description: Apigee Delete an API Proxy
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: patchapiproxy
        method: PATCH
        description: Apigee Update an API Proxy
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: updateMask
          in: query
          type: string
          description: 'Required. List of fields to update. Use comma-separated field names from the resource. Example: "labels".'
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.APIGEE_API_KEY}}'
  exposes:
  - type: rest
    namespace: api-management-api-proxies-rest
    port: 8080
    description: REST adapter for Apigee API Management — API Proxies. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/organizations/{organizationid}/apis
      name: organizations-organizationid-apis
      description: REST surface for organizations-organizationId-apis.
      operations:
      - method: GET
        name: listapiproxies
        description: Apigee List API Proxies
        call: api-management-api-proxies.listapiproxies
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createapiproxy
        description: Apigee Create an API Proxy
        call: api-management-api-proxies.createapiproxy
        with:
          name: rest.name
          action: rest.action
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/organizations/{organizationid}/apis/{apiid}
      name: organizations-organizationid-apis-apiid
      description: REST surface for organizations-organizationId-apis-apiId.
      operations:
      - method: GET
        name: getapiproxy
        description: Apigee Get an API Proxy
        call: api-management-api-proxies.getapiproxy
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteapiproxy
        description: Apigee Delete an API Proxy
        call: api-management-api-proxies.deleteapiproxy
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: patchapiproxy
        description: Apigee Update an API Proxy
        call: api-management-api-proxies.patchapiproxy
        with:
          updateMask: rest.updateMask
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: api-management-api-proxies-mcp
    port: 9090
    transport: http
    description: MCP adapter for Apigee API Management — API Proxies. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: apigee-list-api-proxies
      description: Apigee List API Proxies
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: api-management-api-proxies.listapiproxies
      outputParameters:
      - type: object
        mapping: $.
    - name: apigee-create-api-proxy
      description: Apigee Create an API Proxy
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: api-management-api-proxies.createapiproxy
      with:
        name: tools.name
        action: tools.action
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: apigee-get-api-proxy
      description: Apigee Get an API Proxy
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: api-management-api-proxies.getapiproxy
      outputParameters:
      - type: object
        mapping: $.
    - name: apigee-delete-api-proxy
      description: Apigee Delete an API Proxy
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: api-management-api-proxies.deleteapiproxy
      outputParameters:
      - type: object
        mapping: $.
    - name: apigee-update-api-proxy
      description: Apigee Update an API Proxy
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: api-management-api-proxies.patchapiproxy
      with:
        updateMask: tools.updateMask
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.