UNPKG

@gsb-core/mcp-docs

Version:

Documentation for GSB MCP implementations

53 lines (39 loc) 1.32 kB
/** * Documentation for the startWorkflow operation */ /** * Returns documentation for the startWorkflow operation * @return {string} markdown documentation */ export function startWorkflowDocs() { return ` # StartWorkflow Operation ## General Description The \`startWorkflow\` operation initiates a workflow asynchronously. ## Detailed Description This documentation is a placeholder. The startWorkflow operation details will be updated in a future release. ## Input Parameters This section will be updated with the correct parameters in a future release. ## Response This section will be updated with the correct response format in a future release. ## Example Usage This section will be updated with examples in a future release. ## Additional Information This section will be updated with additional information in a future release. `; } /** * Returns a brief summary of the startWorkflow operation. * @return {string} A short description of the function. */ export function startWorkflowSummary() { return ` **Purpose**: Initiates a workflow asynchronously. **When to use**: - Long-running workflows - Workflows requiring user interaction **Note**: Placeholder - full documentation coming in future release. `; } export default startWorkflowDocs; //# sourceMappingURL=startWorkflow.js.map