Langflow · Capability

Langflow OpenAI Responses API

Langflow OpenAI Responses API. 1 operations. Lead operation: Create Response. Self-contained Naftiko capability covering one Langflow business surface.

Langflow OpenAI Responses API is a Naftiko capability published by Langflow, one of 12 capabilities the APIs.io network indexes for this provider. It bundles 1 operation across the POST method rooted at /v1/api/v1/responses.

The capability includes 1 state-changing operation. Lead operation: Create Response. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Langflow and OpenAI Responses API.

Run with Naftiko LangflowOpenAI Responses API

What You Can Do

POST
Create response — Create Response
/v1/api/v1/responses

MCP Tools

langflow-create-response

Create Response

Capability Spec

openai-responses.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Langflow OpenAI Responses API
  description: 'Langflow OpenAI Responses API. 1 operations. Lead operation: Create Response. Self-contained Naftiko capability
    covering one Langflow business surface.'
  tags:
  - Langflow
  - OpenAI Responses API
  created: '2026-05-24'
  modified: '2026-05-24'
binds:
- namespace: env
  keys:
    LANGFLOW_API_KEY: LANGFLOW_API_KEY
    LANGFLOW_BASE_URL: LANGFLOW_BASE_URL
capability:
  consumes:
  - type: http
    namespace: openai-responses
    baseUri: '{{env.LANGFLOW_BASE_URL}}'
    description: Langflow OpenAI Responses API business capability.
    resources:
    - name: api-v1-responses
      path: /api/v1/responses
      operations:
      - name: create-response
        method: POST
        description: Create Response
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: apikey
      key: x-api-key
      value: '{{env.LANGFLOW_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: openai-responses-rest
    port: 8080
    description: REST adapter for Langflow OpenAI Responses API.
    resources:
    - path: /v1/api/v1/responses
      name: api-v1-responses
      description: REST surface for /api/v1/responses.
      operations:
      - method: POST
        name: create-response
        description: Create Response
        call: openai-responses.create-response
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: openai-responses-mcp
    port: 9090
    transport: http
    description: MCP adapter for Langflow OpenAI Responses API. One tool per consumed operation.
    tools:
    - name: langflow-create-response
      description: Create Response
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: openai-responses.create-response
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.