Skip to main content
Glama

get_workflow

Retrieve detailed information about a specific workflow from the Automatisch automation platform to understand its configuration and functionality.

Instructions

Get detailed information about a specific workflow

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
workflowIdYesWorkflow ID to retrieve

Implementation Reference

  • MCP tool handler implementation for 'get_workflow'. Dispatches to main.api.getWorkflow with workflowId argument and returns JSON-stringified result as text content.
    case "get_workflow": return { content: [ { type: "text", text: JSON.stringify(await main.api.getWorkflow(args?.workflowId), null, 2) } ] };
  • src/handlers.ts:28-41 (registration)
    Registration of the 'get_workflow' tool in the ListTools response, including description and input schema requiring workflowId.
    { name: "get_workflow", description: "Get detailed information about a specific workflow", inputSchema: { type: "object", properties: { workflowId: { type: "string", description: "Workflow ID to retrieve" } }, required: ["workflowId"] } },
  • Input schema definition for the 'get_workflow' tool, specifying object with required string workflowId.
    inputSchema: { type: "object", properties: { workflowId: { type: "string", description: "Workflow ID to retrieve" } }, required: ["workflowId"] }
  • Stub helper function for the getWorkflow API call, intended to contain the actual API logic.
    getWorkflow: async function(workflowId: any) { // ... copy getWorkflow 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