Airtable · Capability

Airtable SCIM API — Users

Airtable SCIM API — Users. 6 operations. Lead operation: Airtable List SCIM Users. Self-contained Naftiko capability covering one Airtable business surface.

Run with Naftiko AirtableUsers

What You Can Do

GET
Listscimusers — Airtable List SCIM Users
/v1/users
POST
Createscimuser — Airtable Create a SCIM User
/v1/users
GET
Getscimuser — Airtable Get a SCIM User
/v1/users/{userid}
PUT
Replacescimuser — Airtable Replace a SCIM User
/v1/users/{userid}
PATCH
Updatescimuser — Airtable Update a SCIM User (partial)
/v1/users/{userid}
DELETE
Deletescimuser — Airtable Delete a SCIM User
/v1/users/{userid}

MCP Tools

airtable-list-scim-users

Airtable List SCIM Users

read-only idempotent
airtable-create-scim-user

Airtable Create a SCIM User

airtable-get-scim-user

Airtable Get a SCIM User

read-only idempotent
airtable-replace-scim-user

Airtable Replace a SCIM User

idempotent
airtable-update-scim-user-partial

Airtable Update a SCIM User (partial)

idempotent
airtable-delete-scim-user

Airtable Delete a SCIM User

idempotent

Capability Spec

scim-users.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Airtable SCIM API — Users
  description: 'Airtable SCIM API — Users. 6 operations. Lead operation: Airtable List SCIM Users. Self-contained Naftiko
    capability covering one Airtable business surface.'
  tags:
  - Airtable
  - Users
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    AIRTABLE_API_KEY: AIRTABLE_API_KEY
capability:
  consumes:
  - type: http
    namespace: scim-users
    baseUri: https://airtable.com/scim/v2
    description: Airtable SCIM API — Users business capability. Self-contained, no shared references.
    resources:
    - name: Users
      path: /Users
      operations:
      - name: listscimusers
        method: GET
        description: Airtable List SCIM Users
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: filter
          in: query
          type: string
          description: SCIM filter expression (e.g., userName eq "[email protected]"). Supports eq operator on userName.
        - name: startIndex
          in: query
          type: integer
          description: The 1-based index of the first result to return.
        - name: count
          in: query
          type: integer
          description: The maximum number of results to return per page.
      - name: createscimuser
        method: POST
        description: Airtable Create a SCIM User
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: Users-userId
      path: /Users/{userId}
      operations:
      - name: getscimuser
        method: GET
        description: Airtable Get a SCIM User
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: replacescimuser
        method: PUT
        description: Airtable Replace a SCIM User
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: updatescimuser
        method: PATCH
        description: Airtable Update a SCIM User (partial)
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletescimuser
        method: DELETE
        description: Airtable Delete a SCIM User
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.AIRTABLE_API_KEY}}'
  exposes:
  - type: rest
    namespace: scim-users-rest
    port: 8080
    description: REST adapter for Airtable SCIM API — Users. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/users
      name: users
      description: REST surface for Users.
      operations:
      - method: GET
        name: listscimusers
        description: Airtable List SCIM Users
        call: scim-users.listscimusers
        with:
          filter: rest.filter
          startIndex: rest.startIndex
          count: rest.count
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createscimuser
        description: Airtable Create a SCIM User
        call: scim-users.createscimuser
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/users/{userid}
      name: users-userid
      description: REST surface for Users-userId.
      operations:
      - method: GET
        name: getscimuser
        description: Airtable Get a SCIM User
        call: scim-users.getscimuser
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: replacescimuser
        description: Airtable Replace a SCIM User
        call: scim-users.replacescimuser
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updatescimuser
        description: Airtable Update a SCIM User (partial)
        call: scim-users.updatescimuser
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletescimuser
        description: Airtable Delete a SCIM User
        call: scim-users.deletescimuser
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: scim-users-mcp
    port: 9090
    transport: http
    description: MCP adapter for Airtable SCIM API — Users. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: airtable-list-scim-users
      description: Airtable List SCIM Users
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: scim-users.listscimusers
      with:
        filter: tools.filter
        startIndex: tools.startIndex
        count: tools.count
      outputParameters:
      - type: object
        mapping: $.
    - name: airtable-create-scim-user
      description: Airtable Create a SCIM User
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: scim-users.createscimuser
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: airtable-get-scim-user
      description: Airtable Get a SCIM User
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: scim-users.getscimuser
      outputParameters:
      - type: object
        mapping: $.
    - name: airtable-replace-scim-user
      description: Airtable Replace a SCIM User
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: scim-users.replacescimuser
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: airtable-update-scim-user-partial
      description: Airtable Update a SCIM User (partial)
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: scim-users.updatescimuser
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: airtable-delete-scim-user
      description: Airtable Delete a SCIM User
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: scim-users.deletescimuser
      outputParameters:
      - type: object
        mapping: $.