Flowise · Capability

Tools

Tools 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

tools.yaml Raw ↑
name: flowise-tools
description: |
  Manage custom Flowise tools. Tools wrap external HTTP APIs or JavaScript
  functions that agents can call during execution.
provider: flowise
api: flowise
authentication:
  type: bearer
baseUrl: http://localhost:3000/api/v1
operations:
  - id: list-tools
    method: GET
    path: /tools
    summary: List all tools
  - id: create-tool
    method: POST
    path: /tools
    summary: Create a new tool
  - id: get-tool
    method: GET
    path: /tools/{id}
    summary: Get a tool by ID
  - id: update-tool
    method: PUT
    path: /tools/{id}
    summary: Update a tool by ID
  - id: delete-tool
    method: DELETE
    path: /tools/{id}
    summary: Delete a tool by ID
tags:
  - Tools
  - Tool Use
  - Function Calling