Anthropic · Capability

Anthropic Admin API — Organization Members

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

Run with Naftiko AnthropicOrganization Members

What You Can Do

GET
Listorganizationmembers — Anthropic List Organization Members
/v1/organizations/users
GET
Getorganizationmember — Anthropic Get Organization Member
/v1/organizations/users/{user-id}
POST
Updateorganizationmember — Anthropic Update Organization Member
/v1/organizations/users/{user-id}
DELETE
Removeorganizationmember — Anthropic Remove Organization Member
/v1/organizations/users/{user-id}

MCP Tools

anthropic-list-organization-members

Anthropic List Organization Members

read-only idempotent
anthropic-get-organization-member

Anthropic Get Organization Member

read-only idempotent
anthropic-update-organization-member

Anthropic Update Organization Member

anthropic-remove-organization-member

Anthropic Remove Organization Member

idempotent

Capability Spec

admin-organization-members.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Anthropic Admin API — Organization Members
  description: 'Anthropic Admin API — Organization Members. 4 operations. Lead operation: Anthropic List Organization Members.
    Self-contained Naftiko capability covering one Anthropic business surface.'
  tags:
  - Anthropic
  - Organization Members
  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-members
    baseUri: https://api.anthropic.com/v1
    description: Anthropic Admin API — Organization Members business capability. Self-contained, no shared references.
    resources:
    - name: organizations-users
      path: /organizations/users
      operations:
      - name: listorganizationmembers
        method: GET
        description: Anthropic List Organization Members
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: email
          in: query
          type: string
          description: Filter by user email
    - name: organizations-users-user_id
      path: /organizations/users/{user_id}
      operations:
      - name: getorganizationmember
        method: GET
        description: Anthropic Get Organization Member
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateorganizationmember
        method: POST
        description: Anthropic Update Organization Member
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: removeorganizationmember
        method: DELETE
        description: Anthropic Remove Organization Member
        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-members-rest
    port: 8080
    description: REST adapter for Anthropic Admin API — Organization Members. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/organizations/users
      name: organizations-users
      description: REST surface for organizations-users.
      operations:
      - method: GET
        name: listorganizationmembers
        description: Anthropic List Organization Members
        call: admin-organization-members.listorganizationmembers
        with:
          email: rest.email
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/organizations/users/{user-id}
      name: organizations-users-user-id
      description: REST surface for organizations-users-user_id.
      operations:
      - method: GET
        name: getorganizationmember
        description: Anthropic Get Organization Member
        call: admin-organization-members.getorganizationmember
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: updateorganizationmember
        description: Anthropic Update Organization Member
        call: admin-organization-members.updateorganizationmember
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: removeorganizationmember
        description: Anthropic Remove Organization Member
        call: admin-organization-members.removeorganizationmember
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: admin-organization-members-mcp
    port: 9090
    transport: http
    description: MCP adapter for Anthropic Admin API — Organization Members. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: anthropic-list-organization-members
      description: Anthropic List Organization Members
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: admin-organization-members.listorganizationmembers
      with:
        email: tools.email
      outputParameters:
      - type: object
        mapping: $.
    - name: anthropic-get-organization-member
      description: Anthropic Get Organization Member
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: admin-organization-members.getorganizationmember
      outputParameters:
      - type: object
        mapping: $.
    - name: anthropic-update-organization-member
      description: Anthropic Update Organization Member
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: admin-organization-members.updateorganizationmember
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: anthropic-remove-organization-member
      description: Anthropic Remove Organization Member
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: admin-organization-members.removeorganizationmember
      outputParameters:
      - type: object
        mapping: $.