Apigee · Capability

Apigee API Management — Developers

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

Run with Naftiko ApigeeDevelopers

What You Can Do

GET
Listdevelopers — Apigee List Developers
/v1/organizations/{organizationid}/developers
POST
Createdeveloper — Apigee Create a Developer
/v1/organizations/{organizationid}/developers
GET
Getdeveloper — Apigee Get a Developer
/v1/organizations/{organizationid}/developers/{developerid}
PUT
Updatedeveloper — Apigee Update a Developer
/v1/organizations/{organizationid}/developers/{developerid}
DELETE
Deletedeveloper — Apigee Delete a Developer
/v1/organizations/{organizationid}/developers/{developerid}

MCP Tools

apigee-list-developers

Apigee List Developers

read-only idempotent
apigee-create-developer

Apigee Create a Developer

apigee-get-developer

Apigee Get a Developer

read-only idempotent
apigee-update-developer

Apigee Update a Developer

idempotent
apigee-delete-developer

Apigee Delete a Developer

idempotent

Capability Spec

api-management-developers.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Apigee API Management — Developers
  description: 'Apigee API Management — Developers. 5 operations. Lead operation: Apigee List Developers. Self-contained Naftiko
    capability covering one Apigee business surface.'
  tags:
  - Apigee
  - Developers
  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-developers
    baseUri: https://apigee.googleapis.com/v1
    description: Apigee API Management — Developers business capability. Self-contained, no shared references.
    resources:
    - name: organizations-organizationId-developers
      path: /organizations/{organizationId}/developers
      operations:
      - name: listdevelopers
        method: GET
        description: Apigee List Developers
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: expand
          in: query
          type: boolean
          description: Set to true to return expanded developer details.
        - name: count
          in: query
          type: integer
          description: Number of developers to return.
        - name: startKey
          in: query
          type: string
          description: Email of the developer from which to start the list.
        - name: app
          in: query
          type: string
          description: Filter by the name of the app owned by the developer.
      - name: createdeveloper
        method: POST
        description: Apigee Create a Developer
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: organizations-organizationId-developers-developerId
      path: /organizations/{organizationId}/developers/{developerId}
      operations:
      - name: getdeveloper
        method: GET
        description: Apigee Get a Developer
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatedeveloper
        method: PUT
        description: Apigee Update a Developer
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletedeveloper
        method: DELETE
        description: Apigee Delete a Developer
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.APIGEE_API_KEY}}'
  exposes:
  - type: rest
    namespace: api-management-developers-rest
    port: 8080
    description: REST adapter for Apigee API Management — Developers. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/organizations/{organizationid}/developers
      name: organizations-organizationid-developers
      description: REST surface for organizations-organizationId-developers.
      operations:
      - method: GET
        name: listdevelopers
        description: Apigee List Developers
        call: api-management-developers.listdevelopers
        with:
          expand: rest.expand
          count: rest.count
          startKey: rest.startKey
          app: rest.app
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createdeveloper
        description: Apigee Create a Developer
        call: api-management-developers.createdeveloper
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/organizations/{organizationid}/developers/{developerid}
      name: organizations-organizationid-developers-developerid
      description: REST surface for organizations-organizationId-developers-developerId.
      operations:
      - method: GET
        name: getdeveloper
        description: Apigee Get a Developer
        call: api-management-developers.getdeveloper
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatedeveloper
        description: Apigee Update a Developer
        call: api-management-developers.updatedeveloper
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletedeveloper
        description: Apigee Delete a Developer
        call: api-management-developers.deletedeveloper
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: api-management-developers-mcp
    port: 9090
    transport: http
    description: MCP adapter for Apigee API Management — Developers. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: apigee-list-developers
      description: Apigee List Developers
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: api-management-developers.listdevelopers
      with:
        expand: tools.expand
        count: tools.count
        startKey: tools.startKey
        app: tools.app
      outputParameters:
      - type: object
        mapping: $.
    - name: apigee-create-developer
      description: Apigee Create a Developer
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: api-management-developers.createdeveloper
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: apigee-get-developer
      description: Apigee Get a Developer
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: api-management-developers.getdeveloper
      outputParameters:
      - type: object
        mapping: $.
    - name: apigee-update-developer
      description: Apigee Update a Developer
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: api-management-developers.updatedeveloper
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: apigee-delete-developer
      description: Apigee Delete a Developer
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: api-management-developers.deletedeveloper
      outputParameters:
      - type: object
        mapping: $.