Skip to main content
Glama

get_workflow_status

Retrieve the current status and complete execution details of a workflow by its ID, including tasks, inputs, outputs, and progress information.

Instructions

Get the current status and details of a specific workflow execution by its ID. Returns complete workflow execution details including tasks, input/output, and current status.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
workflowIdYesThe unique workflow execution ID
includeTaskDetailsNoInclude detailed task information (default: true)

Implementation Reference

  • Handler function that executes the get_workflow_status tool by calling the Conductor API to fetch workflow execution details.
    case "get_workflow_status": { const { workflowId, includeTaskDetails = true } = args as any; const url = `/workflow/${workflowId}`; const params = includeTaskDetails ? { includeTasks: true } : {}; const response = await conductorClient.get(url, { params }); return { content: [ { type: "text", text: JSON.stringify(response.data, null, 2), }, ], }; }
  • Input schema for the get_workflow_status tool defining required workflowId and optional includeTaskDetails.
    inputSchema: { type: "object", properties: { workflowId: { type: "string", description: "The unique workflow execution ID", }, includeTaskDetails: { type: "boolean", description: "Include detailed task information (default: true)", }, }, required: ["workflowId"], },
  • src/index.ts:66-84 (registration)
    Registration of the get_workflow_status tool in the tools array used for listing available tools.
    { name: "get_workflow_status", description: "Get the current status and details of a specific workflow execution by its ID. Returns complete workflow execution details including tasks, input/output, and current status.", inputSchema: { type: "object", properties: { workflowId: { type: "string", description: "The unique workflow execution ID", }, includeTaskDetails: { type: "boolean", description: "Include detailed task information (default: true)", }, }, required: ["workflowId"], }, },

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/opensensor/conductor-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server