Tronald Dump · Capability

Tronald Dump Quotes API — Tags

Quotes — Tags. 2 operations. Lead operation: Tronald Dump Get All Tags. Self-contained Naftiko capability covering one Tronald Dump business surface.

Run with Naftiko Tronald DumpTagsHAL

What You Can Do

GET
Getalltags — Tronald Dump Get All Tags
/v1/tags
GET
Getquotesbytag — Tronald Dump Get Quotes by Tag
/v1/tags/{tag-value}

MCP Tools

list-tags

Tronald Dump Get All Tags

read-only idempotent
get-quotes-by-tag

Tronald Dump Get Quotes by Tag

read-only idempotent

Capability Spec

quotes-tags.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Tronald Dump Quotes API — Tags
  description: >-
    Quotes — Tags. 2 operations. Lead operation: Tronald Dump Get All Tags.
    Self-contained Naftiko capability covering one Tronald Dump business
    surface.
  tags:
  - Tronald Dump
  - Tags
  - HAL
  created: '2026-05-30'
  modified: '2026-05-30'
binds:
- namespace: env
  keys:
    TRONALD_DUMP_BASE_URI: TRONALD_DUMP_BASE_URI
capability:
  consumes:
  - type: http
    namespace: quotes-tags
    baseUri: https://api.tronalddump.io
    description: Tronald Dump Quotes API — Tags business capability. Self-contained, no shared references.
    resources:
    - name: tag
      path: /tag
      operations:
      - name: getAllTags
        method: GET
        description: Tronald Dump Get All Tags
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: tag-by-value
      path: /tag/{tag_value}
      operations:
      - name: getQuotesByTag
        method: GET
        description: Tronald Dump Get Quotes by Tag
        inputParameters:
        - name: tag_value
          in: path
          type: string
          required: true
          description: The exact tag value to filter quotes by.
        - name: page
          in: query
          type: integer
          required: false
          description: Zero-indexed page number for pagination.
        - name: size
          in: query
          type: integer
          required: false
          description: Number of results returned per page.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
  exposes:
  - type: rest
    namespace: quotes-tags-rest
    port: 8080
    description: REST adapter for Tronald Dump Quotes API — Tags. One Spectral-compliant resource per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/tags
      name: tags
      description: REST surface for tags.
      operations:
      - method: GET
        name: getAllTags
        description: Tronald Dump Get All Tags
        call: quotes-tags.getAllTags
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/tags/{tag-value}
      name: tag-by-value
      description: REST surface for tag-by-value.
      operations:
      - method: GET
        name: getQuotesByTag
        description: Tronald Dump Get Quotes by Tag
        call: quotes-tags.getQuotesByTag
        with:
          tag_value: rest.tag_value
          page: rest.page
          size: rest.size
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: quotes-tags-mcp
    port: 9090
    transport: http
    description: MCP adapter for Tronald Dump Quotes API — Tags. One tool per consumed operation, routed inline through this capability's consumes block.
    tools:
    - name: list-tags
      description: Tronald Dump Get All Tags
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: quotes-tags.getAllTags
      outputParameters:
      - type: object
        mapping: $.
    - name: get-quotes-by-tag
      description: Tronald Dump Get Quotes by Tag
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: quotes-tags.getQuotesByTag
      with:
        tag_value: tools.tag_value
        page: tools.page
        size: tools.size
      outputParameters:
      - type: object
        mapping: $.