Langflow · Capability

Langflow Users

Langflow Users. 6 operations. Lead operation: Read All Users. Self-contained Naftiko capability covering one Langflow business surface.

Langflow Users is a Naftiko capability published by Langflow, one of 12 capabilities the APIs.io network indexes for this provider. It bundles 6 operations across the GET, PATCH, POST, and DELETE methods rooted at /v1/api/v1/users.

The capability includes 2 read-only operations and 4 state-changing operations. Lead operation: Read All Users. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Langflow and Users.

Run with Naftiko LangflowUsers

What You Can Do

GET
Read all users — Read All Users
/v1/api/v1/users/
POST
Add user — Add User
/v1/api/v1/users/
GET
Read current user — Read Current User
/v1/api/v1/users/whoami
DELETE
Delete user — Delete User
/v1/api/v1/users/{user_id}
PATCH
Patch user — Patch User
/v1/api/v1/users/{user_id}
PATCH
Reset password — Reset Password
/v1/api/v1/users/{user_id}/reset-password

MCP Tools

langflow-read-all-users

Read All Users

read-only idempotent
langflow-add-user

Add User

langflow-read-current-user

Read Current User

read-only idempotent
langflow-delete-user

Delete User

idempotent
langflow-patch-user

Patch User

langflow-reset-password

Reset Password

Capability Spec

users.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Langflow Users
  description: 'Langflow Users. 6 operations. Lead operation: Read All Users. Self-contained Naftiko capability covering one
    Langflow business surface.'
  tags:
  - Langflow
  - Users
  created: '2026-05-24'
  modified: '2026-05-24'
binds:
- namespace: env
  keys:
    LANGFLOW_API_KEY: LANGFLOW_API_KEY
    LANGFLOW_BASE_URL: LANGFLOW_BASE_URL
capability:
  consumes:
  - type: http
    namespace: users
    baseUri: '{{env.LANGFLOW_BASE_URL}}'
    description: Langflow Users business capability.
    resources:
    - name: api-v1-users
      path: /api/v1/users/
      operations:
      - name: read-all-users
        method: GET
        description: Read All Users
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: skip
          in: query
          type: integer
          description: skip parameter.
          required: false
        - name: limit
          in: query
          type: integer
          description: limit parameter.
          required: false
        - name: search
          in: query
          type: string
          description: search parameter.
          required: false
      - name: add-user
        method: POST
        description: Add User
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: api-v1-users-whoami
      path: /api/v1/users/whoami
      operations:
      - name: read-current-user
        method: GET
        description: Read Current User
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: api-v1-users-user-id
      path: /api/v1/users/{user_id}
      operations:
      - name: delete-user
        method: DELETE
        description: Delete User
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: user_id
          in: path
          type: string
          description: user_id parameter.
          required: true
      - name: patch-user
        method: PATCH
        description: Patch User
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: user_id
          in: path
          type: string
          description: user_id parameter.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: api-v1-users-user-id-reset-password
      path: /api/v1/users/{user_id}/reset-password
      operations:
      - name: reset-password
        method: PATCH
        description: Reset Password
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: user_id
          in: path
          type: string
          description: user_id parameter.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: apikey
      key: x-api-key
      value: '{{env.LANGFLOW_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: users-rest
    port: 8080
    description: REST adapter for Langflow Users.
    resources:
    - path: /v1/api/v1/users/
      name: api-v1-users
      description: REST surface for /api/v1/users/.
      operations:
      - method: GET
        name: read-all-users
        description: Read All Users
        call: users.read-all-users
        with:
          skip: rest.skip
          limit: rest.limit
          search: rest.search
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: add-user
        description: Add User
        call: users.add-user
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v1/users/whoami
      name: api-v1-users-whoami
      description: REST surface for /api/v1/users/whoami.
      operations:
      - method: GET
        name: read-current-user
        description: Read Current User
        call: users.read-current-user
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v1/users/{user_id}
      name: api-v1-users-user-id
      description: REST surface for /api/v1/users/{user_id}.
      operations:
      - method: DELETE
        name: delete-user
        description: Delete User
        call: users.delete-user
        with:
          user_id: rest.user_id
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: patch-user
        description: Patch User
        call: users.patch-user
        with:
          user_id: rest.user_id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v1/users/{user_id}/reset-password
      name: api-v1-users-user-id-reset-password
      description: REST surface for /api/v1/users/{user_id}/reset-password.
      operations:
      - method: PATCH
        name: reset-password
        description: Reset Password
        call: users.reset-password
        with:
          user_id: rest.user_id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: users-mcp
    port: 9090
    transport: http
    description: MCP adapter for Langflow Users. One tool per consumed operation.
    tools:
    - name: langflow-read-all-users
      description: Read All Users
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: users.read-all-users
      with:
        skip: tools.skip
        limit: tools.limit
        search: tools.search
      outputParameters:
      - type: object
        mapping: $.
    - name: langflow-add-user
      description: Add User
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: users.add-user
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: langflow-read-current-user
      description: Read Current User
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: users.read-current-user
      outputParameters:
      - type: object
        mapping: $.
    - name: langflow-delete-user
      description: Delete User
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: users.delete-user
      with:
        user_id: tools.user_id
      outputParameters:
      - type: object
        mapping: $.
    - name: langflow-patch-user
      description: Patch User
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: users.patch-user
      with:
        user_id: tools.user_id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: langflow-reset-password
      description: Reset Password
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: users.reset-password
      with:
        user_id: tools.user_id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.