Skip to main content
Glama

list_executions

Retrieve and filter workflow execution records from Automatisch to monitor status, track performance, and manage automation processes.

Instructions

List workflow executions

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
workflowIdNoFilter by workflow ID
statusNoFilter by execution status
limitNoLimit number of results

Implementation Reference

  • The handler logic for the 'list_executions' tool within the CallToolRequestHandler switch statement. It invokes the API helper and formats the response as JSON text.
    case "list_executions": return { content: [ { type: "text", text: JSON.stringify(await main.api.listExecutions(args), null, 2) } ] };
  • Tool schema definition including name, description, and input schema for 'list_executions'.
    { name: "list_executions", description: "List workflow executions", inputSchema: { type: "object", properties: { workflowId: { type: "string", description: "Filter by workflow ID" }, status: { type: "string", enum: ["success", "failure", "running"], description: "Filter by execution status" }, limit: { type: "number", description: "Limit number of results" } } } },
  • Registration of the 'list_executions' tool in the ListToolsRequestHandler's tools array.
    { name: "list_executions", description: "List workflow executions", inputSchema: { type: "object", properties: { workflowId: { type: "string", description: "Filter by workflow ID" }, status: { type: "string", enum: ["success", "failure", "running"], description: "Filter by execution status" }, limit: { type: "number", description: "Limit number of results" } } } },
  • API helper function for listExecutions, currently a stub referencing logic from index.ts.
    listExecutions: async function(args: any = {}) { // ... copy listExecutions logic from index.ts ... },

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/milisp/automatisch-mcp-server'

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