Flowiseai integration
FlowiseAI is an open-source generative AI development platform for building AI…
- Provider
- flowiseai
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 29 available
Quick start
Call Flowiseai from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Flowiseai's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"FLOWISEAI_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
End-users supply their own Flowiseai API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.
Available actions
29 actions exposed via the
Flowiseai integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
FLOWISEAI_CLONE_CHATFLOW -
FLOWISEAI_CREATE_CHATFLOW -
FLOWISEAI_CREATE_DOCUMENT_STORE -
FLOWISEAI_CREATE_LEAD -
FLOWISEAI_CREATE_TOOL -
FLOWISEAI_CREATE_VARIABLE -
FLOWISEAI_DELETE_CHATFLOW -
FLOWISEAI_DELETE_CHAT_MESSAGES -
FLOWISEAI_DELETE_DOCUMENT_STORE -
FLOWISEAI_DELETE_TOOL_BY_ID -
FLOWISEAI_DELETE_VARIABLE -
FLOWISEAI_EDIT_DOCUMENT_STORE_FILE_CHUNK
Show all 29 actions
-
FLOWISEAI_GET_ALL_CHATFLOWS -
FLOWISEAI_GET_ALL_CHAT_MESSAGE_FEEDBACK -
FLOWISEAI_GET_ALL_LEADS_FOR_CHATFLOW -
FLOWISEAI_GET_ALL_UPSERT_HISTORY -
FLOWISEAI_GET_ALL_VARIABLES -
FLOWISEAI_GET_DOCUMENT_STORE_BY_ID -
FLOWISEAI_GET_DOCUMENT_STORE_FILE_CHUNKS -
FLOWISEAI_GET_SINGLE_CHATFLOW -
FLOWISEAI_GET_TOOL_BY_ID -
FLOWISEAI_LIST_ALL_TOOLS -
FLOWISEAI_LIST_ASSISTANTS -
FLOWISEAI_LIST_CHAT_MESSAGES -
FLOWISEAI_PING_SERVER -
FLOWISEAI_UPDATE_CHATFLOW_DETAILS -
FLOWISEAI_UPDATE_DOCUMENT_STORE -
FLOWISEAI_UPDATE_TOOL_BY_ID -
FLOWISEAI_UPDATE_VARIABLE
Build with Flowiseai
Open OverSkill, describe what you want to build, and reference Flowiseai in your prompt — the AI will wire up the integration automatically.