Amazon Kendra · Capability

Amazon Kendra API — FAQs

Amazon Kendra API — FAQs. 4 operations. Lead operation: Amazon Kendra Create FAQ. Self-contained Naftiko capability covering one Amazon Kendra business surface.

Run with Naftiko Amazon KendraFAQs

What You Can Do

POST
Createfaq — Amazon Kendra Create FAQ
/v1/indexes/{indexid}/faqs
GET
Listfaqs — Amazon Kendra List FAQs
/v1/indexes/{indexid}/faqs
GET
Describefaq — Amazon Kendra Describe FAQ
/v1/indexes/{indexid}/faqs/{faqid}
DELETE
Deletefaq — Amazon Kendra Delete FAQ
/v1/indexes/{indexid}/faqs/{faqid}

MCP Tools

amazon-kendra-create-faq

Amazon Kendra Create FAQ

amazon-kendra-list-faqs

Amazon Kendra List FAQs

read-only idempotent
amazon-kendra-describe-faq

Amazon Kendra Describe FAQ

read-only idempotent
amazon-kendra-delete-faq

Amazon Kendra Delete FAQ

idempotent

Capability Spec

amazon-kendra-faqs.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Amazon Kendra API — FAQs
  description: 'Amazon Kendra API — FAQs. 4 operations. Lead operation: Amazon Kendra Create FAQ. Self-contained Naftiko capability
    covering one Amazon Kendra business surface.'
  tags:
  - Amazon Kendra
  - FAQs
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    AMAZON_KENDRA_API_KEY: AMAZON_KENDRA_API_KEY
capability:
  consumes:
  - type: http
    namespace: amazon-kendra-faqs
    baseUri: https://kendra.{region}.amazonaws.com
    description: Amazon Kendra API — FAQs business capability. Self-contained, no shared references.
    resources:
    - name: indexes-IndexId-faqs
      path: /indexes/{IndexId}/faqs
      operations:
      - name: createfaq
        method: POST
        description: Amazon Kendra Create FAQ
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: IndexId
          in: path
          type: string
          description: The identifier of the index.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: listfaqs
        method: GET
        description: Amazon Kendra List FAQs
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: IndexId
          in: path
          type: string
          description: The identifier of the index.
          required: true
    - name: indexes-IndexId-faqs-FaqId
      path: /indexes/{IndexId}/faqs/{FaqId}
      operations:
      - name: describefaq
        method: GET
        description: Amazon Kendra Describe FAQ
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: IndexId
          in: path
          type: string
          description: The identifier of the index.
          required: true
        - name: FaqId
          in: path
          type: string
          description: The identifier of the FAQ.
          required: true
      - name: deletefaq
        method: DELETE
        description: Amazon Kendra Delete FAQ
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: IndexId
          in: path
          type: string
          description: The identifier of the index.
          required: true
        - name: FaqId
          in: path
          type: string
          description: The identifier of the FAQ.
          required: true
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.AMAZON_KENDRA_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: amazon-kendra-faqs-rest
    port: 8080
    description: REST adapter for Amazon Kendra API — FAQs. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/indexes/{indexid}/faqs
      name: indexes-indexid-faqs
      description: REST surface for indexes-IndexId-faqs.
      operations:
      - method: POST
        name: createfaq
        description: Amazon Kendra Create FAQ
        call: amazon-kendra-faqs.createfaq
        with:
          IndexId: rest.IndexId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: listfaqs
        description: Amazon Kendra List FAQs
        call: amazon-kendra-faqs.listfaqs
        with:
          IndexId: rest.IndexId
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/indexes/{indexid}/faqs/{faqid}
      name: indexes-indexid-faqs-faqid
      description: REST surface for indexes-IndexId-faqs-FaqId.
      operations:
      - method: GET
        name: describefaq
        description: Amazon Kendra Describe FAQ
        call: amazon-kendra-faqs.describefaq
        with:
          IndexId: rest.IndexId
          FaqId: rest.FaqId
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletefaq
        description: Amazon Kendra Delete FAQ
        call: amazon-kendra-faqs.deletefaq
        with:
          IndexId: rest.IndexId
          FaqId: rest.FaqId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: amazon-kendra-faqs-mcp
    port: 9090
    transport: http
    description: MCP adapter for Amazon Kendra API — FAQs. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: amazon-kendra-create-faq
      description: Amazon Kendra Create FAQ
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: amazon-kendra-faqs.createfaq
      with:
        IndexId: tools.IndexId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: amazon-kendra-list-faqs
      description: Amazon Kendra List FAQs
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: amazon-kendra-faqs.listfaqs
      with:
        IndexId: tools.IndexId
      outputParameters:
      - type: object
        mapping: $.
    - name: amazon-kendra-describe-faq
      description: Amazon Kendra Describe FAQ
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: amazon-kendra-faqs.describefaq
      with:
        IndexId: tools.IndexId
        FaqId: tools.FaqId
      outputParameters:
      - type: object
        mapping: $.
    - name: amazon-kendra-delete-faq
      description: Amazon Kendra Delete FAQ
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: amazon-kendra-faqs.deletefaq
      with:
        IndexId: tools.IndexId
        FaqId: tools.FaqId
      outputParameters:
      - type: object
        mapping: $.