Tools reference

The tools the Floqer MCP server exposes to a connected assistant, grouped by what they act on. Tools fall into three roles:

  • Read tools (list_*, get_*, read_*) inspect your workspace and never change anything, they are safe to call freely.
  • Run tools (run_*) execute automations and consume credits, just like clicking Run in the app.
  • Write tools (manage_*, set_*, add_*, configure_*) create or change workspace objects.

Start every session with get_started, which returns the operating context (workflow, tool roles, cost-safety rules, known gotchas) and should be called before any other Floqer tool.

1. Session and account

ToolRoleWhat it does
get_startedReadReturns the current operating context for the workspace. Call first, on every new task.
get_userReadReturns the authenticated user and workspace the token belongs to.

2. Workflows

ToolRoleWhat it does
list_workflowsReadLists the workflows in the workspace.
get_workflowReadReturns a single workflow's configuration.
get_workflow_actionsReadReturns the actions (steps) that make up a workflow.
add_actionWriteAdds an action to a workflow.
configure_actionWriteSets or updates the configuration of an action.
manage_workflowWriteCreates, updates, or changes the state of a workflow.
run_workflowRunExecutes a workflow. Consumes credits.

3. Apps

Apps are packaged, runnable Floqer automations.

ToolRoleWhat it does
list_appsReadLists available apps.
get_appReadReturns a single app's details.
run_appRunRuns an app. Consumes credits.
get_app_runReadReturns the result and status of a specific app run.
list_app_runsReadLists prior runs of an app.

4. Sources and tables

Sources feed data in; tables (rows) hold the working data a workflow reads and writes.

ToolRoleWhat it does
list_sourcesReadLists the data sources in the workspace.
get_source_dataReadReads data from a source.
manage_sourceWriteCreates or updates a data source.
list_rowsReadReads rows from a table.
manage_rowsWriteAdds, updates, or removes rows.

5. Inputs

Inputs are the parameters a workflow or app expects before it runs.

ToolRoleWhat it does
list_inputsReadLists the inputs an object expects.
manage_inputsWriteSets or updates input values.

6. Docs and knowledge

ToolRoleWhat it does
list_docsReadLists the docs available in the workspace.
read_docReadReturns the contents of a doc.
get_user_knowledgeReadReturns saved user knowledge (remembered preferences and facts).
set_user_knowledgeWriteSaves or updates user knowledge for future sessions.

Note

The exact tool set can grow over time. Ask the assistant to list its available Floqer tools, or call get_started, to see what your workspace currently exposes.