Anthropic · Capability

Anthropic Admin API — Organization Invites

Anthropic Admin API — Organization Invites. 4 operations. Lead operation: Anthropic List Organization Invites. Self-contained Naftiko capability covering one Anthropic business surface.

Run with Naftiko AnthropicOrganization Invites

What You Can Do

GET
Listorganizationinvites — Anthropic List Organization Invites
/v1/organizations/invites
POST
Createorganizationinvite — Anthropic Create Organization Invite
/v1/organizations/invites
GET
Getorganizationinvite — Anthropic Get Organization Invite
/v1/organizations/invites/{invite-id}
DELETE
Deleteorganizationinvite — Anthropic Delete Organization Invite
/v1/organizations/invites/{invite-id}

MCP Tools

anthropic-list-organization-invites

Anthropic List Organization Invites

read-only idempotent
anthropic-create-organization-invite

Anthropic Create Organization Invite

anthropic-get-organization-invite

Anthropic Get Organization Invite

read-only idempotent
anthropic-delete-organization-invite

Anthropic Delete Organization Invite

idempotent

Capability Spec

admin-organization-invites.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Anthropic Admin API — Organization Invites
  description: 'Anthropic Admin API — Organization Invites. 4 operations. Lead operation: Anthropic List Organization Invites.
    Self-contained Naftiko capability covering one Anthropic business surface.'
  tags:
  - Anthropic
  - Organization Invites
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ANTHROPIC_API_KEY: ANTHROPIC_API_KEY
capability:
  consumes:
  - type: http
    namespace: admin-organization-invites
    baseUri: https://api.anthropic.com/v1
    description: Anthropic Admin API — Organization Invites business capability. Self-contained, no shared references.
    resources:
    - name: organizations-invites
      path: /organizations/invites
      operations:
      - name: listorganizationinvites
        method: GET
        description: Anthropic List Organization Invites
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createorganizationinvite
        method: POST
        description: Anthropic Create Organization Invite
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: organizations-invites-invite_id
      path: /organizations/invites/{invite_id}
      operations:
      - name: getorganizationinvite
        method: GET
        description: Anthropic Get Organization Invite
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: deleteorganizationinvite
        method: DELETE
        description: Anthropic Delete Organization Invite
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: apikey
      key: x-api-key
      value: '{{env.ANTHROPIC_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: admin-organization-invites-rest
    port: 8080
    description: REST adapter for Anthropic Admin API — Organization Invites. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/organizations/invites
      name: organizations-invites
      description: REST surface for organizations-invites.
      operations:
      - method: GET
        name: listorganizationinvites
        description: Anthropic List Organization Invites
        call: admin-organization-invites.listorganizationinvites
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createorganizationinvite
        description: Anthropic Create Organization Invite
        call: admin-organization-invites.createorganizationinvite
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/organizations/invites/{invite-id}
      name: organizations-invites-invite-id
      description: REST surface for organizations-invites-invite_id.
      operations:
      - method: GET
        name: getorganizationinvite
        description: Anthropic Get Organization Invite
        call: admin-organization-invites.getorganizationinvite
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteorganizationinvite
        description: Anthropic Delete Organization Invite
        call: admin-organization-invites.deleteorganizationinvite
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: admin-organization-invites-mcp
    port: 9090
    transport: http
    description: MCP adapter for Anthropic Admin API — Organization Invites. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: anthropic-list-organization-invites
      description: Anthropic List Organization Invites
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: admin-organization-invites.listorganizationinvites
      outputParameters:
      - type: object
        mapping: $.
    - name: anthropic-create-organization-invite
      description: Anthropic Create Organization Invite
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: admin-organization-invites.createorganizationinvite
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: anthropic-get-organization-invite
      description: Anthropic Get Organization Invite
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: admin-organization-invites.getorganizationinvite
      outputParameters:
      - type: object
        mapping: $.
    - name: anthropic-delete-organization-invite
      description: Anthropic Delete Organization Invite
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: admin-organization-invites.deleteorganizationinvite
      outputParameters:
      - type: object
        mapping: $.