Front · Capability

Core API — Tags

Core API — Tags. 14 operations. Lead operation: List company tags. Self-contained Naftiko capability covering one Front business surface.

Run with Naftiko FrontTags

What You Can Do

GET
Listcompanytags — List company tags
/v1/company/tags
POST
Createcompanytag — Create company tag
/v1/company/tags
GET
Listtags — List tags
/v1/tags
POST
Createtag — Create tag
/v1/tags
GET
Gettag — Get tag
/v1/tags/{tag-id}
PATCH
Updateatag — Update a tag
/v1/tags/{tag-id}
DELETE
Deletetag — Delete tag
/v1/tags/{tag-id}
GET
Listtagchildren — List tag children
/v1/tags/{tag-id}/children
POST
Createchildtag — Create child tag
/v1/tags/{tag-id}/children
GET
Listtaggedconversations — List tagged conversations
/v1/tags/{tag-id}/conversations
GET
Listteammatetags — List teammate tags
/v1/teammates/{teammate-id}/tags
POST
Createteammatetag — Create teammate tag
/v1/teammates/{teammate-id}/tags
GET
Listteamtags — List team tags
/v1/teams/{team-id}/tags
POST
Createteamtag — Create team tag
/v1/teams/{team-id}/tags

MCP Tools

list-company-tags

List company tags

read-only idempotent
create-company-tag

Create company tag

list-tags

List tags

read-only idempotent
create-tag

Create tag

get-tag

Get tag

read-only idempotent
update-tag

Update a tag

idempotent
delete-tag

Delete tag

idempotent
list-tag-children

List tag children

read-only idempotent
create-child-tag

Create child tag

list-tagged-conversations

List tagged conversations

read-only idempotent
list-teammate-tags

List teammate tags

read-only idempotent
create-teammate-tag

Create teammate tag

list-team-tags

List team tags

read-only idempotent
create-team-tag

Create team tag

Capability Spec

core-tags.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Core API — Tags
  description: 'Core API — Tags. 14 operations. Lead operation: List company tags. Self-contained Naftiko capability covering
    one Front business surface.'
  tags:
  - Front
  - Tags
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    FRONT_API_KEY: FRONT_API_KEY
capability:
  consumes:
  - type: http
    namespace: core-tags
    baseUri: https://api2.frontapp.com
    description: Core API — Tags business capability. Self-contained, no shared references.
    resources:
    - name: company-tags
      path: /company/tags
      operations:
      - name: listcompanytags
        method: GET
        description: List company tags
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createcompanytag
        method: POST
        description: Create company tag
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: tags
      path: /tags
      operations:
      - name: listtags
        method: GET
        description: List tags
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createtag
        method: POST
        description: Create tag
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: tags-tag_id
      path: /tags/{tag_id}
      operations:
      - name: gettag
        method: GET
        description: Get tag
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: tag_id
          in: path
          type: string
          description: The tag ID
          required: true
      - name: updateatag
        method: PATCH
        description: Update a tag
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: tag_id
          in: path
          type: string
          description: The tag ID
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: deletetag
        method: DELETE
        description: Delete tag
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: tag_id
          in: path
          type: string
          description: The ID of the tag to delete
          required: true
    - name: tags-tag_id-children
      path: /tags/{tag_id}/children
      operations:
      - name: listtagchildren
        method: GET
        description: List tag children
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: tag_id
          in: path
          type: string
          description: The tag ID
          required: true
      - name: createchildtag
        method: POST
        description: Create child tag
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: tag_id
          in: path
          type: string
          description: The tag ID
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: tags-tag_id-conversations
      path: /tags/{tag_id}/conversations
      operations:
      - name: listtaggedconversations
        method: GET
        description: List tagged conversations
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: tag_id
          in: path
          type: string
          description: The ID of the tag
          required: true
    - name: teammates-teammate_id-tags
      path: /teammates/{teammate_id}/tags
      operations:
      - name: listteammatetags
        method: GET
        description: List teammate tags
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: teammate_id
          in: path
          type: string
          description: The teammate ID. Alternatively, you can supply an email as a [resource alias](https://dev.frontapp.com/docs/resource-aliases-1).
          required: true
      - name: createteammatetag
        method: POST
        description: Create teammate tag
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: teammate_id
          in: path
          type: string
          description: The teammate ID. Alternatively, you can supply an email as a [resource alias](https://dev.frontapp.com/docs/resource-aliases-1).
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: teams-team_id-tags
      path: /teams/{team_id}/tags
      operations:
      - name: listteamtags
        method: GET
        description: List team tags
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: team_id
          in: path
          type: string
          description: The team ID
          required: true
      - name: createteamtag
        method: POST
        description: Create team tag
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: team_id
          in: path
          type: string
          description: The team ID
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    authentication:
      type: bearer
      token: '{{env.FRONT_API_KEY}}'
  exposes:
  - type: rest
    namespace: core-tags-rest
    port: 8080
    description: REST adapter for Core API — Tags. One Spectral-compliant resource per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/company/tags
      name: company-tags
      description: REST surface for company-tags.
      operations:
      - method: GET
        name: listcompanytags
        description: List company tags
        call: core-tags.listcompanytags
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createcompanytag
        description: Create company tag
        call: core-tags.createcompanytag
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/tags
      name: tags
      description: REST surface for tags.
      operations:
      - method: GET
        name: listtags
        description: List tags
        call: core-tags.listtags
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createtag
        description: Create tag
        call: core-tags.createtag
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/tags/{tag-id}
      name: tags-tag-id
      description: REST surface for tags-tag_id.
      operations:
      - method: GET
        name: gettag
        description: Get tag
        call: core-tags.gettag
        with:
          tag_id: rest.tag_id
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updateatag
        description: Update a tag
        call: core-tags.updateatag
        with:
          tag_id: rest.tag_id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletetag
        description: Delete tag
        call: core-tags.deletetag
        with:
          tag_id: rest.tag_id
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/tags/{tag-id}/children
      name: tags-tag-id-children
      description: REST surface for tags-tag_id-children.
      operations:
      - method: GET
        name: listtagchildren
        description: List tag children
        call: core-tags.listtagchildren
        with:
          tag_id: rest.tag_id
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createchildtag
        description: Create child tag
        call: core-tags.createchildtag
        with:
          tag_id: rest.tag_id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/tags/{tag-id}/conversations
      name: tags-tag-id-conversations
      description: REST surface for tags-tag_id-conversations.
      operations:
      - method: GET
        name: listtaggedconversations
        description: List tagged conversations
        call: core-tags.listtaggedconversations
        with:
          tag_id: rest.tag_id
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/teammates/{teammate-id}/tags
      name: teammates-teammate-id-tags
      description: REST surface for teammates-teammate_id-tags.
      operations:
      - method: GET
        name: listteammatetags
        description: List teammate tags
        call: core-tags.listteammatetags
        with:
          teammate_id: rest.teammate_id
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createteammatetag
        description: Create teammate tag
        call: core-tags.createteammatetag
        with:
          teammate_id: rest.teammate_id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/teams/{team-id}/tags
      name: teams-team-id-tags
      description: REST surface for teams-team_id-tags.
      operations:
      - method: GET
        name: listteamtags
        description: List team tags
        call: core-tags.listteamtags
        with:
          team_id: rest.team_id
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createteamtag
        description: Create team tag
        call: core-tags.createteamtag
        with:
          team_id: rest.team_id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: core-tags-mcp
    port: 9090
    transport: http
    description: MCP adapter for Core API — Tags. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: list-company-tags
      description: List company tags
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: core-tags.listcompanytags
      outputParameters:
      - type: object
        mapping: $.
    - name: create-company-tag
      description: Create company tag
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: core-tags.createcompanytag
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: list-tags
      description: List tags
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: core-tags.listtags
      outputParameters:
      - type: object
        mapping: $.
    - name: create-tag
      description: Create tag
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: core-tags.createtag
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-tag
      description: Get tag
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: core-tags.gettag
      with:
        tag_id: tools.tag_id
      outputParameters:
      - type: object
        mapping: $.
    - name: update-tag
      description: Update a tag
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: core-tags.updateatag
      with:
        tag_id: tools.tag_id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-tag
      description: Delete tag
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: core-tags.deletetag
      with:
        tag_id: tools.tag_id
      outputParameters:
      - type: object
        mapping: $.
    - name: list-tag-children
      description: List tag children
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: core-tags.listtagchildren
      with:
        tag_id: tools.tag_id
      outputParameters:
      - type: object
        mapping: $.
    - name: create-child-tag
      description: Create child tag
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: core-tags.createchildtag
      with:
        tag_id: tools.tag_id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: list-tagged-conversations
      description: List tagged conversations
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: core-tags.listtaggedconversations
      with:
        tag_id: tools.tag_id
      outputParameters:
      - type: object
        mapping: $.
    - name: list-teammate-tags
      description: List teammate tags
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: core-tags.listteammatetags
      with:
        teammate_id: tools.teammate_id
      outputParameters:
      - type: object
        mapping: $.
    - name: create-teammate-tag
      description: Create teammate tag
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: core-tags.createteammatetag
      with:
        teammate_id: tools.teammate_id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: list-team-tags
      description: List team tags
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: core-tags.listteamtags
      with:
        team_id: tools.team_id
      outputParameters:
      - type: object
        mapping: $.
    - name: create-team-tag
      description: Create team tag
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: core-tags.createteamtag
      with:
        team_id: tools.team_id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.