Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
FLOWISE_API_KEYNoOptional API key if Flowise auth is enabled.
FLOWISE_DYNAMICNoSet to 'true' to enable dynamic mode (one tool per chatflow).false
FLOWISE_API_ENDPOINTYesThe Flowise API endpoint URL (default: http://localhost:3000).http://localhost:3000

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
list_chatflowsA

List the Flowise chatflows available on the configured instance.

Returns a JSON array of {"id", "name"} objects for each chatflow that passes the configured whitelist/blacklist filters.

create_predictionA

Run a Flowise chatflow and return its response.

Args: chatflow_id: Id of the chatflow to run (see list_chatflows). question: User input / prompt to send to the chatflow.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.7/5.0

Scored across 2 tools

Disambiguation5/5

The two tools have clearly distinct purposes: one lists available chatflows, the other runs a specific chatflow. There is no overlap or ambiguity.

Naming Consistency5/5

Both tools follow the verb_noun pattern with consistent snake_case naming (list_chatflows, create_prediction), making them predictable and easy to understand.

Tool Count3/5

With only two tools, the server feels thin for a typical chatflow interaction; while the set covers listing and running, it is on the low end of reasonable scope.

Completeness2/5

The server lacks essential CRUD operations like creating, deleting, or updating chatflows, which are significant gaps for managing chatflows effectively.

Maintenance

ActivityStale
ResponsivenessNo issues