Slack · Capability
Slack Lists API — Items
Slack Lists API — Items. 4 operations. Lead operation: Create List Item. Self-contained Naftiko capability covering one Slack business surface.
What You Can Do
POST
Postslacklistsitemscreate
— Create List Item
/v1/slacklists-items-create
POST
Postslacklistsitemsdelete
— Delete List Item
/v1/slacklists-items-delete
GET
Getslacklistsitemslist
— List Items
/v1/slacklists-items-list
POST
Postslacklistsitemsupdate
— Update List Item
/v1/slacklists-items-update
MCP Tools
create-list-item
Create List Item
read-only
delete-list-item
Delete List Item
read-only
list-items
List Items
read-only
idempotent
update-list-item
Update List Item
read-only
Capability Spec
naftiko: 1.0.0-alpha2
info:
label: Slack Lists API — Items
description: 'Slack Lists API — Items. 4 operations. Lead operation: Create List Item. Self-contained Naftiko capability
covering one Slack business surface.'
tags:
- Slack
- Items
created: '2026-05-19'
modified: '2026-05-19'
binds:
- namespace: env
keys:
SLACK_API_KEY: SLACK_API_KEY
capability:
consumes:
- type: http
namespace: lists-items
baseUri: https://slack.com/api
description: Slack Lists API — Items business capability. Self-contained, no shared references.
resources:
- name: slackLists.items.create
path: /slackLists.items.create
operations:
- name: postslacklistsitemscreate
method: POST
description: Create 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.items.delete
path: /slackLists.items.delete
operations:
- name: postslacklistsitemsdelete
method: POST
description: Delete 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.items.list
path: /slackLists.items.list
operations:
- name: getslacklistsitemslist
method: GET
description: List Items
outputRawFormat: json
outputParameters:
- name: result
type: object
value: $.
inputParameters:
- name: token
in: query
type: string
description: 'Authentication token. Requires scope: `lists:read`'
required: true
- name: list_id
in: query
type: string
description: ID of the list to retrieve items from.
required: true
- name: cursor
in: query
type: string
description: Pagination cursor for retrieving additional pages.
- name: limit
in: query
type: integer
description: Maximum number of items to return.
- 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
authentication:
type: bearer
token: '{{env.SLACK_API_KEY}}'
exposes:
- type: rest
namespace: lists-items-rest
port: 8080
description: REST adapter for Slack Lists API — Items. One Spectral-compliant resource per consumed operation, prefixed
with /v1.
resources:
- path: /v1/slacklists-items-create
name: slacklists-items-create
description: REST surface for slackLists.items.create.
operations:
- method: POST
name: postslacklistsitemscreate
description: Create List Item
call: lists-items.postslacklistsitemscreate
with:
token: rest.token
body: rest.body
outputParameters:
- type: object
mapping: $.
- path: /v1/slacklists-items-delete
name: slacklists-items-delete
description: REST surface for slackLists.items.delete.
operations:
- method: POST
name: postslacklistsitemsdelete
description: Delete List Item
call: lists-items.postslacklistsitemsdelete
with:
token: rest.token
body: rest.body
outputParameters:
- type: object
mapping: $.
- path: /v1/slacklists-items-list
name: slacklists-items-list
description: REST surface for slackLists.items.list.
operations:
- method: GET
name: getslacklistsitemslist
description: List Items
call: lists-items.getslacklistsitemslist
with:
token: rest.token
list_id: rest.list_id
cursor: rest.cursor
limit: rest.limit
outputParameters:
- type: object
mapping: $.
- 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-items.postslacklistsitemsupdate
with:
token: rest.token
body: rest.body
outputParameters:
- type: object
mapping: $.
- type: mcp
namespace: lists-items-mcp
port: 9090
transport: http
description: MCP adapter for Slack Lists API — Items. One tool per consumed operation, routed inline through this capability's
consumes block.
tools:
- name: create-list-item
description: Create List Item
hints:
readOnly: true
destructive: false
idempotent: false
call: lists-items.postslacklistsitemscreate
with:
token: tools.token
body: tools.body
outputParameters:
- type: object
mapping: $.
- name: delete-list-item
description: Delete List Item
hints:
readOnly: true
destructive: false
idempotent: false
call: lists-items.postslacklistsitemsdelete
with:
token: tools.token
body: tools.body
outputParameters:
- type: object
mapping: $.
- name: list-items
description: List Items
hints:
readOnly: true
destructive: false
idempotent: true
call: lists-items.getslacklistsitemslist
with:
token: tools.token
list_id: tools.list_id
cursor: tools.cursor
limit: tools.limit
outputParameters:
- type: object
mapping: $.
- name: update-list-item
description: Update List Item
hints:
readOnly: true
destructive: false
idempotent: false
call: lists-items.postslacklistsitemsupdate
with:
token: tools.token
body: tools.body
outputParameters:
- type: object
mapping: $.