Slack · Capability

Slack Chat API — Get

Slack Chat API — Get. 2 operations. Lead operation: Slack Get Chat Getpermalink. Self-contained Naftiko capability covering one Slack business surface.

Run with Naftiko SlackGet

What You Can Do

GET
Getchatgetpermalink — Slack Get Chat Getpermalink
/v1/chat-getpermalink
GET
Getchatscheduledmessageslist — Slack Get Chat Scheduledmessages List
/v1/chat-scheduledmessages-list

MCP Tools

slack-get-chat-getpermalink

Slack Get Chat Getpermalink

read-only idempotent
slack-get-chat-scheduledmessages-list

Slack Get Chat Scheduledmessages List

read-only idempotent

Capability Spec

chat-get.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Slack Chat API — Get
  description: 'Slack Chat API — Get. 2 operations. Lead operation: Slack Get Chat Getpermalink. Self-contained Naftiko capability
    covering one Slack business surface.'
  tags:
  - Slack
  - Get
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SLACK_API_KEY: SLACK_API_KEY
capability:
  consumes:
  - type: http
    namespace: chat-get
    baseUri: ''
    description: Slack Chat API — Get business capability. Self-contained, no shared references.
    resources:
    - name: chat.getPermalink
      path: /chat.getPermalink
      operations:
      - name: getchatgetpermalink
        method: GET
        description: Slack Get Chat Getpermalink
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: token
          in: query
          type: string
          description: 'Authentication token. Requires scope: `none`'
          required: true
        - name: channel
          in: query
          type: string
          description: The ID of the conversation or channel containing the message
          required: true
        - name: message_ts
          in: query
          type: string
          description: A message's `ts` value, uniquely identifying it within a channel
          required: true
    - name: chat.scheduledMessages.list
      path: /chat.scheduledMessages.list
      operations:
      - name: getchatscheduledmessageslist
        method: GET
        description: Slack Get Chat Scheduledmessages List
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: token
          in: header
          type: string
          description: 'Authentication token. Requires scope: `none`'
        - name: channel
          in: query
          type: string
          description: The channel of the scheduled messages
        - name: latest
          in: query
          type: number
          description: A UNIX timestamp of the latest value in the time range
        - name: oldest
          in: query
          type: number
          description: A UNIX timestamp of the oldest value in the time range
        - name: limit
          in: query
          type: integer
          description: Maximum number of original entries to return.
        - name: cursor
          in: query
          type: string
          description: 'For pagination purposes, this is the `cursor` value returned from a previous call to `chat.scheduledmessages.list`
            indicating where you want to start this call '
  exposes:
  - type: rest
    namespace: chat-get-rest
    port: 8080
    description: REST adapter for Slack Chat API — Get. One Spectral-compliant resource per consumed operation, prefixed with
      /v1.
    resources:
    - path: /v1/chat-getpermalink
      name: chat-getpermalink
      description: REST surface for chat.getPermalink.
      operations:
      - method: GET
        name: getchatgetpermalink
        description: Slack Get Chat Getpermalink
        call: chat-get.getchatgetpermalink
        with:
          token: rest.token
          channel: rest.channel
          message_ts: rest.message_ts
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/chat-scheduledmessages-list
      name: chat-scheduledmessages-list
      description: REST surface for chat.scheduledMessages.list.
      operations:
      - method: GET
        name: getchatscheduledmessageslist
        description: Slack Get Chat Scheduledmessages List
        call: chat-get.getchatscheduledmessageslist
        with:
          token: rest.token
          channel: rest.channel
          latest: rest.latest
          oldest: rest.oldest
          limit: rest.limit
          cursor: rest.cursor
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: chat-get-mcp
    port: 9090
    transport: http
    description: MCP adapter for Slack Chat API — Get. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: slack-get-chat-getpermalink
      description: Slack Get Chat Getpermalink
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: chat-get.getchatgetpermalink
      with:
        token: tools.token
        channel: tools.channel
        message_ts: tools.message_ts
      outputParameters:
      - type: object
        mapping: $.
    - name: slack-get-chat-scheduledmessages-list
      description: Slack Get Chat Scheduledmessages List
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: chat-get.getchatscheduledmessageslist
      with:
        token: tools.token
        channel: tools.channel
        latest: tools.latest
        oldest: tools.oldest
        limit: tools.limit
        cursor: tools.cursor
      outputParameters:
      - type: object
        mapping: $.