Slack · Capability

Slack Web API — Team

Slack Web API — Team. 1 operations. Lead operation: Slack Get Team Information. Self-contained Naftiko capability covering one Slack business surface.

Run with Naftiko SlackTeam

What You Can Do

GET
Teaminfo — Slack Get Team Information
/v1/team-info

MCP Tools

slack-get-team-information

Slack Get Team Information

read-only idempotent

Capability Spec

web-team.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Slack Web API — Team
  description: 'Slack Web API — Team. 1 operations. Lead operation: Slack Get Team Information. Self-contained Naftiko capability
    covering one Slack business surface.'
  tags:
  - Slack
  - Team
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SLACK_API_KEY: SLACK_API_KEY
capability:
  consumes:
  - type: http
    namespace: web-team
    baseUri: https://slack.com/api
    description: Slack Web API — Team business capability. Self-contained, no shared references.
    resources:
    - name: team.info
      path: /team.info
      operations:
      - name: teaminfo
        method: GET
        description: Slack Get Team Information
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: team
          in: query
          type: string
          description: Team to get info about; if omitted, will return information about the current team.
    authentication:
      type: bearer
      token: '{{env.SLACK_API_KEY}}'
  exposes:
  - type: rest
    namespace: web-team-rest
    port: 8080
    description: REST adapter for Slack Web API — Team. One Spectral-compliant resource per consumed operation, prefixed with
      /v1.
    resources:
    - path: /v1/team-info
      name: team-info
      description: REST surface for team.info.
      operations:
      - method: GET
        name: teaminfo
        description: Slack Get Team Information
        call: web-team.teaminfo
        with:
          team: rest.team
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: web-team-mcp
    port: 9090
    transport: http
    description: MCP adapter for Slack Web API — Team. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: slack-get-team-information
      description: Slack Get Team Information
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: web-team.teaminfo
      with:
        team: tools.team
      outputParameters:
      - type: object
        mapping: $.