Slack · Capability

Slack Stars API — Post

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

Run with Naftiko SlackPost

What You Can Do

POST
Poststarsadd — Slack Post Stars Add
/v1/stars-add
POST
Poststarsremove — Slack Post Stars Remove
/v1/stars-remove

MCP Tools

slack-post-stars-add

Slack Post Stars Add

slack-post-stars-remove

Slack Post Stars Remove

Capability Spec

stars-post.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Slack Stars API — Post
  description: 'Slack Stars API — Post. 2 operations. Lead operation: Slack Post Stars Add. Self-contained Naftiko capability
    covering one Slack business surface.'
  tags:
  - Slack
  - Post
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SLACK_API_KEY: SLACK_API_KEY
capability:
  consumes:
  - type: http
    namespace: stars-post
    baseUri: ''
    description: Slack Stars API — Post business capability. Self-contained, no shared references.
    resources:
    - name: stars.add
      path: /stars.add
      operations:
      - name: poststarsadd
        method: POST
        description: Slack Post Stars Add
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: token
          in: header
          type: string
          description: 'Authentication token. Requires scope: `stars:write`'
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: stars.remove
      path: /stars.remove
      operations:
      - name: poststarsremove
        method: POST
        description: Slack Post Stars Remove
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: token
          in: header
          type: string
          description: 'Authentication token. Requires scope: `stars:write`'
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
  exposes:
  - type: rest
    namespace: stars-post-rest
    port: 8080
    description: REST adapter for Slack Stars API — Post. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/stars-add
      name: stars-add
      description: REST surface for stars.add.
      operations:
      - method: POST
        name: poststarsadd
        description: Slack Post Stars Add
        call: stars-post.poststarsadd
        with:
          token: rest.token
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/stars-remove
      name: stars-remove
      description: REST surface for stars.remove.
      operations:
      - method: POST
        name: poststarsremove
        description: Slack Post Stars Remove
        call: stars-post.poststarsremove
        with:
          token: rest.token
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: stars-post-mcp
    port: 9090
    transport: http
    description: MCP adapter for Slack Stars API — Post. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: slack-post-stars-add
      description: Slack Post Stars Add
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: stars-post.poststarsadd
      with:
        token: tools.token
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: slack-post-stars-remove
      description: Slack Post Stars Remove
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: stars-post.poststarsremove
      with:
        token: tools.token
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.