Skip to content

flow_schema

Kelly Ferrone edited this page Sep 12, 2026 · 1 revision

flow_schema

The shape of a flow document.

MCP tool flow_schema
HTTP POST /flows/schema

Every tool that may be a step and the parameters each takes, derived from the live tools — so it cannot describe a step that would not run.

Parameters

This action takes no parameters.

Returns

An object.

Errors

Status Means
400 The request cannot succeed as sent — an unusable name, a flow that does not exist, a document that would not run, or a write aimed at the read-only shared library. Do not retry it unchanged.
401 Missing or wrong bearer token.
500 Something failed that this server did not expect.

Over MCP the same failures arrive as a tool error.

Example

MCP

flow_schema()

HTTP

curl -X POST $SELENIUM_FLOW/flows/schema \
  -H "Authorization: Bearer $TOKEN" \
  -H 'Content-Type: application/json' \
  -d '{
    "session_id": "…"
  }'

← All actions · Installing · Deployment

Clone this wiki locally