Slack · Capability

Slack Calls API — Calls

Slack Calls API — Calls. 6 operations. Lead operation: Slack Post Calls Add. Self-contained Naftiko capability covering one Slack business surface.

Run with Naftiko SlackCalls

What You Can Do

POST
Callsadd — Slack Post Calls Add
/v1/calls-add
POST
Callsend — Slack Post Calls End
/v1/calls-end
GET
Callsinfo — Slack Get Calls Info
/v1/calls-info
POST
Callsparticipantsadd — Slack Post Calls Participants Add
/v1/calls-participants-add
POST
Callsparticipantsremove — Slack Post Calls Participants Remove
/v1/calls-participants-remove
POST
Callsupdate — Slack Post Calls Update
/v1/calls-update

MCP Tools

slack-post-calls-add

Slack Post Calls Add

slack-post-calls-end

Slack Post Calls End

slack-get-calls-info

Slack Get Calls Info

read-only idempotent
slack-post-calls-participants-add

Slack Post Calls Participants Add

slack-post-calls-participants-remove

Slack Post Calls Participants Remove

slack-post-calls-update

Slack Post Calls Update

Capability Spec

calls-calls.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Slack Calls API — Calls
  description: 'Slack Calls API — Calls. 6 operations. Lead operation: Slack Post Calls Add. Self-contained Naftiko capability
    covering one Slack business surface.'
  tags:
  - Slack
  - Calls
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SLACK_API_KEY: SLACK_API_KEY
capability:
  consumes:
  - type: http
    namespace: calls-calls
    baseUri: ''
    description: Slack Calls API — Calls business capability. Self-contained, no shared references.
    resources:
    - name: calls.add
      path: /calls.add
      operations:
      - name: callsadd
        method: POST
        description: Slack Post Calls Add
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: token
          in: header
          type: string
          description: 'Authentication token. Requires scope: `calls:write`'
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: calls.end
      path: /calls.end
      operations:
      - name: callsend
        method: POST
        description: Slack Post Calls End
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: token
          in: header
          type: string
          description: 'Authentication token. Requires scope: `calls:write`'
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: calls.info
      path: /calls.info
      operations:
      - name: callsinfo
        method: GET
        description: Slack Get Calls Info
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: token
          in: header
          type: string
          description: 'Authentication token. Requires scope: `calls:read`'
          required: true
        - name: id
          in: query
          type: string
          description: '`id` of the Call returned by the [`calls.add`](/methods/calls.add) method.'
          required: true
    - name: calls.participants.add
      path: /calls.participants.add
      operations:
      - name: callsparticipantsadd
        method: POST
        description: Slack Post Calls Participants Add
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: token
          in: header
          type: string
          description: 'Authentication token. Requires scope: `calls:write`'
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: calls.participants.remove
      path: /calls.participants.remove
      operations:
      - name: callsparticipantsremove
        method: POST
        description: Slack Post Calls Participants Remove
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: token
          in: header
          type: string
          description: 'Authentication token. Requires scope: `calls:write`'
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: calls.update
      path: /calls.update
      operations:
      - name: callsupdate
        method: POST
        description: Slack Post Calls Update
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: token
          in: header
          type: string
          description: 'Authentication token. Requires scope: `calls:write`'
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
  exposes:
  - type: rest
    namespace: calls-calls-rest
    port: 8080
    description: REST adapter for Slack Calls API — Calls. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/calls-add
      name: calls-add
      description: REST surface for calls.add.
      operations:
      - method: POST
        name: callsadd
        description: Slack Post Calls Add
        call: calls-calls.callsadd
        with:
          token: rest.token
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/calls-end
      name: calls-end
      description: REST surface for calls.end.
      operations:
      - method: POST
        name: callsend
        description: Slack Post Calls End
        call: calls-calls.callsend
        with:
          token: rest.token
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/calls-info
      name: calls-info
      description: REST surface for calls.info.
      operations:
      - method: GET
        name: callsinfo
        description: Slack Get Calls Info
        call: calls-calls.callsinfo
        with:
          token: rest.token
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/calls-participants-add
      name: calls-participants-add
      description: REST surface for calls.participants.add.
      operations:
      - method: POST
        name: callsparticipantsadd
        description: Slack Post Calls Participants Add
        call: calls-calls.callsparticipantsadd
        with:
          token: rest.token
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/calls-participants-remove
      name: calls-participants-remove
      description: REST surface for calls.participants.remove.
      operations:
      - method: POST
        name: callsparticipantsremove
        description: Slack Post Calls Participants Remove
        call: calls-calls.callsparticipantsremove
        with:
          token: rest.token
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/calls-update
      name: calls-update
      description: REST surface for calls.update.
      operations:
      - method: POST
        name: callsupdate
        description: Slack Post Calls Update
        call: calls-calls.callsupdate
        with:
          token: rest.token
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: calls-calls-mcp
    port: 9090
    transport: http
    description: MCP adapter for Slack Calls API — Calls. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: slack-post-calls-add
      description: Slack Post Calls Add
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: calls-calls.callsadd
      with:
        token: tools.token
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: slack-post-calls-end
      description: Slack Post Calls End
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: calls-calls.callsend
      with:
        token: tools.token
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: slack-get-calls-info
      description: Slack Get Calls Info
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: calls-calls.callsinfo
      with:
        token: tools.token
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: slack-post-calls-participants-add
      description: Slack Post Calls Participants Add
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: calls-calls.callsparticipantsadd
      with:
        token: tools.token
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: slack-post-calls-participants-remove
      description: Slack Post Calls Participants Remove
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: calls-calls.callsparticipantsremove
      with:
        token: tools.token
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: slack-post-calls-update
      description: Slack Post Calls Update
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: calls-calls.callsupdate
      with:
        token: tools.token
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.