Flowise · Capability

Variables

Variables is a Naftiko capability published by Flowise, one of 13 capabilities the APIs.io network indexes for this provider.

Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Run with Naftiko

Capability Spec

variables.yaml Raw ↑
name: flowise-variables
description: |
  Manage Flowise runtime variables. Variables provide named, optionally
  encrypted values (such as API keys or environment-style settings) that
  chatflows and agentflows can reference at runtime.
provider: flowise
api: flowise
authentication:
  type: bearer
baseUrl: http://localhost:3000/api/v1
operations:
  - id: list-variables
    method: GET
    path: /variables
    summary: List all variables
  - id: create-variable
    method: POST
    path: /variables
    summary: Create a new variable
  - id: update-variable
    method: PUT
    path: /variables/{id}
    summary: Update a variable by ID
  - id: delete-variable
    method: DELETE
    path: /variables/{id}
    summary: Delete a variable by ID
tags:
  - Variables
  - Configuration