Koyeb · Capability

Koyeb Rest API — OrganizationMembers

Koyeb Rest API — OrganizationMembers. 2 operations. Lead operation: List organization members. Self-contained Naftiko capability covering one Koyeb business surface.

Run with Naftiko KoyebOrganizationMembers

What You Can Do

GET
Listorganizationmembers — List organization members
/v1/v1/organization-members
DELETE
Removeorganizationmember — Remove an organization member
/v1/v1/organization-members/{id}

MCP Tools

list-organization-members

List organization members

read-only idempotent
remove-organization-member

Remove an organization member

idempotent

Capability Spec

koyeb-organizationmembers.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Koyeb Rest API — OrganizationMembers
  description: 'Koyeb Rest API — OrganizationMembers. 2 operations. Lead operation: List organization members. Self-contained
    Naftiko capability covering one Koyeb business surface.'
  tags:
  - Koyeb
  - OrganizationMembers
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    KOYEB_API_KEY: KOYEB_API_KEY
capability:
  consumes:
  - type: http
    namespace: koyeb-organizationmembers
    baseUri: https://app.koyeb.com
    description: Koyeb Rest API — OrganizationMembers business capability. Self-contained, no shared references.
    resources:
    - name: v1-organization_members
      path: /v1/organization_members
      operations:
      - name: listorganizationmembers
        method: GET
        description: List organization members
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: limit
          in: query
          type: string
          description: (Optional) The number of items to return
        - name: offset
          in: query
          type: string
          description: (Optional) The offset in the list of item to return
        - name: organization_id
          in: query
          type: string
          description: (Optional) Filter for an organization
        - name: user_id
          in: query
          type: string
          description: (Optional) Filter for an user
        - name: organization_statuses
          in: query
          type: array
          description: (Optional) Filter for organization statuses
    - name: v1-organization_members-id
      path: /v1/organization_members/{id}
      operations:
      - name: removeorganizationmember
        method: DELETE
        description: Remove an organization member
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
  exposes:
  - type: rest
    namespace: koyeb-organizationmembers-rest
    port: 8080
    description: REST adapter for Koyeb Rest API — OrganizationMembers. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v1/organization-members
      name: v1-organization-members
      description: REST surface for v1-organization_members.
      operations:
      - method: GET
        name: listorganizationmembers
        description: List organization members
        call: koyeb-organizationmembers.listorganizationmembers
        with:
          limit: rest.limit
          offset: rest.offset
          organization_id: rest.organization_id
          user_id: rest.user_id
          organization_statuses: rest.organization_statuses
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/organization-members/{id}
      name: v1-organization-members-id
      description: REST surface for v1-organization_members-id.
      operations:
      - method: DELETE
        name: removeorganizationmember
        description: Remove an organization member
        call: koyeb-organizationmembers.removeorganizationmember
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: koyeb-organizationmembers-mcp
    port: 9090
    transport: http
    description: MCP adapter for Koyeb Rest API — OrganizationMembers. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-organization-members
      description: List organization members
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: koyeb-organizationmembers.listorganizationmembers
      with:
        limit: tools.limit
        offset: tools.offset
        organization_id: tools.organization_id
        user_id: tools.user_id
        organization_statuses: tools.organization_statuses
      outputParameters:
      - type: object
        mapping: $.
    - name: remove-organization-member
      description: Remove an organization member
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: koyeb-organizationmembers.removeorganizationmember
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.