Quora · Capability

Poe API — Responses

Poe API — Responses. 1 operations. Lead operation: Create a response. Self-contained Naftiko capability covering one Quora business surface.

Run with Naftiko QuoraResponses

What You Can Do

POST
Createresponse — Create a response
/v1/responses

MCP Tools

create-response

Create a response

Capability Spec

poe-responses.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Poe API — Responses
  description: 'Poe API — Responses. 1 operations. Lead operation: Create a response. Self-contained Naftiko capability covering
    one Quora business surface.'
  tags:
  - Quora
  - Responses
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    QUORA_API_KEY: QUORA_API_KEY
capability:
  consumes:
  - type: http
    namespace: poe-responses
    baseUri: https://api.poe.com/v1
    description: Poe API — Responses business capability. Self-contained, no shared references.
    resources:
    - name: responses
      path: /responses
      operations:
      - name: createresponse
        method: POST
        description: Create a response
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.QUORA_API_KEY}}'
  exposes:
  - type: rest
    namespace: poe-responses-rest
    port: 8080
    description: REST adapter for Poe API — Responses. One Spectral-compliant resource per consumed operation, prefixed with
      /v1.
    resources:
    - path: /v1/responses
      name: responses
      description: REST surface for responses.
      operations:
      - method: POST
        name: createresponse
        description: Create a response
        call: poe-responses.createresponse
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: poe-responses-mcp
    port: 9090
    transport: http
    description: MCP adapter for Poe API — Responses. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: create-response
      description: Create a response
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: poe-responses.createresponse
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.