Slack · Capability

Slack Lists API — Update

Slack Lists API — Update. 2 operations. Lead operation: Update List Item. Self-contained Naftiko capability covering one Slack business surface.

Run with Naftiko SlackUpdate

What You Can Do

POST
Postslacklistsitemsupdate — Update List Item
/v1/slacklists-items-update
POST
Postslacklistsupdate — Update List
/v1/slacklists-update

MCP Tools

update-list-item

Update List Item

read-only
update-list

Update List

Capability Spec

lists-update.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Slack Lists API — Update
  description: 'Slack Lists API — Update. 2 operations. Lead operation: Update List Item. Self-contained Naftiko capability
    covering one Slack business surface.'
  tags:
  - Slack
  - Update
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SLACK_API_KEY: SLACK_API_KEY
capability:
  consumes:
  - type: http
    namespace: lists-update
    baseUri: https://slack.com/api
    description: Slack Lists API — Update business capability. Self-contained, no shared references.
    resources:
    - name: slackLists.items.update
      path: /slackLists.items.update
      operations:
      - name: postslacklistsitemsupdate
        method: POST
        description: Update List Item
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: token
          in: header
          type: string
          description: 'Authentication token. Requires scope: `lists:write`'
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: slackLists.update
      path: /slackLists.update
      operations:
      - name: postslacklistsupdate
        method: POST
        description: Update List
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: token
          in: header
          type: string
          description: 'Authentication token. Requires scope: `lists:write`'
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.SLACK_API_KEY}}'
  exposes:
  - type: rest
    namespace: lists-update-rest
    port: 8080
    description: REST adapter for Slack Lists API — Update. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/slacklists-items-update
      name: slacklists-items-update
      description: REST surface for slackLists.items.update.
      operations:
      - method: POST
        name: postslacklistsitemsupdate
        description: Update List Item
        call: lists-update.postslacklistsitemsupdate
        with:
          token: rest.token
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/slacklists-update
      name: slacklists-update
      description: REST surface for slackLists.update.
      operations:
      - method: POST
        name: postslacklistsupdate
        description: Update List
        call: lists-update.postslacklistsupdate
        with:
          token: rest.token
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: lists-update-mcp
    port: 9090
    transport: http
    description: MCP adapter for Slack Lists API — Update. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: update-list-item
      description: Update List Item
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: lists-update.postslacklistsitemsupdate
      with:
        token: tools.token
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: update-list
      description: Update List
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: lists-update.postslacklistsupdate
      with:
        token: tools.token
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.