Slack · Capability

Slack Web API — Reminders

Slack Web API — Reminders. 2 operations. Lead operation: Slack Create a Reminder. Self-contained Naftiko capability covering one Slack business surface.

Run with Naftiko SlackReminders

What You Can Do

POST
Remindersadd — Slack Create a Reminder
/v1/reminders-add
GET
Reminderslist — Slack List All Reminders
/v1/reminders-list

MCP Tools

slack-create-reminder

Slack Create a Reminder

slack-list-all-reminders

Slack List All Reminders

read-only idempotent

Capability Spec

web-reminders.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Slack Web API — Reminders
  description: 'Slack Web API — Reminders. 2 operations. Lead operation: Slack Create a Reminder. Self-contained Naftiko capability
    covering one Slack business surface.'
  tags:
  - Slack
  - Reminders
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SLACK_API_KEY: SLACK_API_KEY
capability:
  consumes:
  - type: http
    namespace: web-reminders
    baseUri: https://slack.com/api
    description: Slack Web API — Reminders business capability. Self-contained, no shared references.
    resources:
    - name: reminders.add
      path: /reminders.add
      operations:
      - name: remindersadd
        method: POST
        description: Slack Create a Reminder
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: reminders.list
      path: /reminders.list
      operations:
      - name: reminderslist
        method: GET
        description: Slack List All Reminders
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.SLACK_API_KEY}}'
  exposes:
  - type: rest
    namespace: web-reminders-rest
    port: 8080
    description: REST adapter for Slack Web API — Reminders. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/reminders-add
      name: reminders-add
      description: REST surface for reminders.add.
      operations:
      - method: POST
        name: remindersadd
        description: Slack Create a Reminder
        call: web-reminders.remindersadd
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/reminders-list
      name: reminders-list
      description: REST surface for reminders.list.
      operations:
      - method: GET
        name: reminderslist
        description: Slack List All Reminders
        call: web-reminders.reminderslist
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: web-reminders-mcp
    port: 9090
    transport: http
    description: MCP adapter for Slack Web API — Reminders. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: slack-create-reminder
      description: Slack Create a Reminder
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: web-reminders.remindersadd
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: slack-list-all-reminders
      description: Slack List All Reminders
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: web-reminders.reminderslist
      outputParameters:
      - type: object
        mapping: $.