Thought Industries · Capability

Thought Industries REST API — Content

Thought Industries REST API — Content. 2 operations. Lead operation: List Categories. Self-contained Naftiko capability covering one Thought Industries business surface.

Run with Naftiko Thought IndustriesContent

What You Can Do

GET
Listcategories — List Categories
/v1/categories
GET
Listcontent — List Content
/v1/content

MCP Tools

list-categories

List Categories

read-only idempotent
list-content

List Content

read-only idempotent

Capability Spec

thought-industries-content.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Thought Industries REST API — Content
  description: 'Thought Industries REST API — Content. 2 operations. Lead operation: List Categories. Self-contained Naftiko
    capability covering one Thought Industries business surface.'
  tags:
  - Thought Industries
  - Content
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    THOUGHT_INDUSTRIES_API_KEY: THOUGHT_INDUSTRIES_API_KEY
capability:
  consumes:
  - type: http
    namespace: thought-industries-content
    baseUri: https://{subdomain}.thoughtindustries.com/incoming/api/v1
    description: Thought Industries REST API — Content business capability. Self-contained, no shared references.
    resources:
    - name: categories
      path: /categories
      operations:
      - name: listcategories
        method: GET
        description: List Categories
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: content
      path: /content
      operations:
      - name: listcontent
        method: GET
        description: List Content
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: page
          in: query
          type: integer
        - name: per_page
          in: query
          type: integer
        - name: content_type
          in: query
          type: string
          description: Filter by content type.
    authentication:
      type: apikey
      key: X-API-Key
      value: '{{env.THOUGHT_INDUSTRIES_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: thought-industries-content-rest
    port: 8080
    description: REST adapter for Thought Industries REST API — Content. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/categories
      name: categories
      description: REST surface for categories.
      operations:
      - method: GET
        name: listcategories
        description: List Categories
        call: thought-industries-content.listcategories
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/content
      name: content
      description: REST surface for content.
      operations:
      - method: GET
        name: listcontent
        description: List Content
        call: thought-industries-content.listcontent
        with:
          page: rest.page
          per_page: rest.per_page
          content_type: rest.content_type
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: thought-industries-content-mcp
    port: 9090
    transport: http
    description: MCP adapter for Thought Industries REST API — Content. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-categories
      description: List Categories
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: thought-industries-content.listcategories
      outputParameters:
      - type: object
        mapping: $.
    - name: list-content
      description: List Content
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: thought-industries-content.listcontent
      with:
        page: tools.page
        per_page: tools.per_page
        content_type: tools.content_type
      outputParameters:
      - type: object
        mapping: $.