Skip to main content

Available tools

ToolPurpose
list_workflowsList workflows available in a deployment
update_workflowUpload or update a workflow on Nen
list_runsList recent runs for a workflow
create_runExecute a workflow
get_run_statusCheck the status of a workflow run
get_run_logsRetrieve logs for a workflow run
get_run_videoGet a URL to the run dashboard with video and log viewer

Tool details

list_workflows

List all workflows available in your deployment. Example prompt:
List my workflows

update_workflow

Upload workflow files to Nen. If it exists already, this is an update. Otherwise, it will publish a new workflow. Parameters:
  • workflowId (string, required): Workflow UUID.
  • files (array, required): Workflow files to upload.
  • workflowName (string, optional): Human-readable name.
Example prompt:
Update workflow 12345678-1234-1234-1234-123456789abc with add-patient

list_runs

List recent runs for a workflow. Parameters:
  • workflowId (string, required): Workflow UUID.
  • limit (integer, optional): Max runs to return.
Example prompt:
List the last 5 runs for 12345678-1234-1234-1234-123456789abc

create_run

Start a new workflow run. Parameters:
  • workflowId (string, required): Workflow UUID.
Example prompt:
Run workflow 12345678-1234-1234-1234-123456789abc with variables: {"PATIENT_NAME":"Jane Doe"}

get_run_status

Check the status of a workflow run. Parameters:
  • messageId (string, required): Message ID returned by create_run.
Example prompt:
Get status of run messageId 9e793617-78ed-46d6-90ac-25c6f5e8ab20

get_run_logs

Retrieve logs for a run to debug errors or review outputs. Parameters:
  • messageId (string, required): Message ID returned by create_run.
Example prompt:
Read logs for messageId 9e793617-78ed-46d6-90ac-25c6f5e8ab20

get_run_video

Get the video replay URL for a completed run. Parameters:
  • messageId (string, required): Message ID returned by create_run.
Example prompt:
Get video for messageId 9e793617-78ed-46d6-90ac-25c6f5e8ab20

Example authoring flow

See the end-to-end example in the MCP Server overview.