Typesense · Capability

Typesense Conversational Search API — Conversation Models

Typesense Conversational Search API — Conversation Models. 5 operations. Lead operation: List All Conversation Models. Self-contained Naftiko capability covering one Typesense business surface.

Run with Naftiko TypesenseConversation Models

What You Can Do

GET
Listconversationmodels — List All Conversation Models
/v1/conversations/models
POST
Createconversationmodel — Create A Conversation Model
/v1/conversations/models
GET
Getconversationmodel — Retrieve A Conversation Model
/v1/conversations/models/{modelid}
PUT
Updateconversationmodel — Update A Conversation Model
/v1/conversations/models/{modelid}
DELETE
Deleteconversationmodel — Delete A Conversation Model
/v1/conversations/models/{modelid}

MCP Tools

list-all-conversation-models

List All Conversation Models

read-only idempotent
create-conversation-model

Create A Conversation Model

retrieve-conversation-model

Retrieve A Conversation Model

read-only idempotent
update-conversation-model

Update A Conversation Model

idempotent
delete-conversation-model

Delete A Conversation Model

idempotent

Capability Spec

conversational-search-conversation-models.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Typesense Conversational Search API — Conversation Models
  description: 'Typesense Conversational Search API — Conversation Models. 5 operations. Lead operation: List All Conversation
    Models. Self-contained Naftiko capability covering one Typesense business surface.'
  tags:
  - Typesense
  - Conversation Models
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TYPESENSE_API_KEY: TYPESENSE_API_KEY
capability:
  consumes:
  - type: http
    namespace: conversational-search-conversation-models
    baseUri: ''
    description: Typesense Conversational Search API — Conversation Models business capability. Self-contained, no shared
      references.
    resources:
    - name: conversations-models
      path: /conversations/models
      operations:
      - name: listconversationmodels
        method: GET
        description: List All Conversation Models
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createconversationmodel
        method: POST
        description: Create A Conversation Model
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: conversations-models-modelId
      path: /conversations/models/{modelId}
      operations:
      - name: getconversationmodel
        method: GET
        description: Retrieve A Conversation Model
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateconversationmodel
        method: PUT
        description: Update A Conversation Model
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteconversationmodel
        method: DELETE
        description: Delete A Conversation Model
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: apikey
      key: X-TYPESENSE-API-KEY
      value: '{{env.TYPESENSE_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: conversational-search-conversation-models-rest
    port: 8080
    description: REST adapter for Typesense Conversational Search API — Conversation Models. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/conversations/models
      name: conversations-models
      description: REST surface for conversations-models.
      operations:
      - method: GET
        name: listconversationmodels
        description: List All Conversation Models
        call: conversational-search-conversation-models.listconversationmodels
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createconversationmodel
        description: Create A Conversation Model
        call: conversational-search-conversation-models.createconversationmodel
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/conversations/models/{modelid}
      name: conversations-models-modelid
      description: REST surface for conversations-models-modelId.
      operations:
      - method: GET
        name: getconversationmodel
        description: Retrieve A Conversation Model
        call: conversational-search-conversation-models.getconversationmodel
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateconversationmodel
        description: Update A Conversation Model
        call: conversational-search-conversation-models.updateconversationmodel
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteconversationmodel
        description: Delete A Conversation Model
        call: conversational-search-conversation-models.deleteconversationmodel
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: conversational-search-conversation-models-mcp
    port: 9090
    transport: http
    description: MCP adapter for Typesense Conversational Search API — Conversation Models. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: list-all-conversation-models
      description: List All Conversation Models
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: conversational-search-conversation-models.listconversationmodels
      outputParameters:
      - type: object
        mapping: $.
    - name: create-conversation-model
      description: Create A Conversation Model
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: conversational-search-conversation-models.createconversationmodel
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieve-conversation-model
      description: Retrieve A Conversation Model
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: conversational-search-conversation-models.getconversationmodel
      outputParameters:
      - type: object
        mapping: $.
    - name: update-conversation-model
      description: Update A Conversation Model
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: conversational-search-conversation-models.updateconversationmodel
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-conversation-model
      description: Delete A Conversation Model
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: conversational-search-conversation-models.deleteconversationmodel
      outputParameters:
      - type: object
        mapping: $.