Slack · Capability

Slack Apps API — Users

Slack Apps API — Users. 2 operations. Lead operation: Slack Get Apps Permissions Users List. Self-contained Naftiko capability covering one Slack business surface.

Run with Naftiko SlackUsers

What You Can Do

GET
Getappspermissionsuserslist — Slack Get Apps Permissions Users List
/v1/apps-permissions-users-list
GET
Getappspermissionsusersrequest — Slack Get Apps Permissions Users Request
/v1/apps-permissions-users-request

MCP Tools

slack-get-apps-permissions-users

Slack Get Apps Permissions Users List

read-only idempotent
slack-get-apps-permissions-users-2

Slack Get Apps Permissions Users Request

read-only idempotent

Capability Spec

apps-users.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Slack Apps API — Users
  description: 'Slack Apps API — Users. 2 operations. Lead operation: Slack Get Apps Permissions Users List. Self-contained
    Naftiko capability covering one Slack business surface.'
  tags:
  - Slack
  - Users
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SLACK_API_KEY: SLACK_API_KEY
capability:
  consumes:
  - type: http
    namespace: apps-users
    baseUri: ''
    description: Slack Apps API — Users business capability. Self-contained, no shared references.
    resources:
    - name: apps.permissions.users.list
      path: /apps.permissions.users.list
      operations:
      - name: getappspermissionsuserslist
        method: GET
        description: Slack Get Apps Permissions Users List
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: token
          in: query
          type: string
          description: 'Authentication token. Requires scope: `none`'
          required: true
        - name: cursor
          in: query
          type: string
          description: Paginate through collections of data by setting the `cursor` parameter to a `next_cursor` attribute
            returned by a previous request's `response_metadata`. Defaul
        - name: limit
          in: query
          type: integer
          description: The maximum number of items to return.
    - name: apps.permissions.users.request
      path: /apps.permissions.users.request
      operations:
      - name: getappspermissionsusersrequest
        method: GET
        description: Slack Get Apps Permissions Users Request
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: token
          in: query
          type: string
          description: 'Authentication token. Requires scope: `none`'
          required: true
        - name: scopes
          in: query
          type: string
          description: A comma separated list of user scopes to request for
          required: true
        - name: trigger_id
          in: query
          type: string
          description: Token used to trigger the request
          required: true
        - name: user
          in: query
          type: string
          description: The user this scope is being requested for
          required: true
  exposes:
  - type: rest
    namespace: apps-users-rest
    port: 8080
    description: REST adapter for Slack Apps API — Users. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/apps-permissions-users-list
      name: apps-permissions-users-list
      description: REST surface for apps.permissions.users.list.
      operations:
      - method: GET
        name: getappspermissionsuserslist
        description: Slack Get Apps Permissions Users List
        call: apps-users.getappspermissionsuserslist
        with:
          token: rest.token
          cursor: rest.cursor
          limit: rest.limit
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/apps-permissions-users-request
      name: apps-permissions-users-request
      description: REST surface for apps.permissions.users.request.
      operations:
      - method: GET
        name: getappspermissionsusersrequest
        description: Slack Get Apps Permissions Users Request
        call: apps-users.getappspermissionsusersrequest
        with:
          token: rest.token
          scopes: rest.scopes
          trigger_id: rest.trigger_id
          user: rest.user
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: apps-users-mcp
    port: 9090
    transport: http
    description: MCP adapter for Slack Apps API — Users. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: slack-get-apps-permissions-users
      description: Slack Get Apps Permissions Users List
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: apps-users.getappspermissionsuserslist
      with:
        token: tools.token
        cursor: tools.cursor
        limit: tools.limit
      outputParameters:
      - type: object
        mapping: $.
    - name: slack-get-apps-permissions-users-2
      description: Slack Get Apps Permissions Users Request
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: apps-users.getappspermissionsusersrequest
      with:
        token: tools.token
        scopes: tools.scopes
        trigger_id: tools.trigger_id
        user: tools.user
      outputParameters:
      - type: object
        mapping: $.