@gsb-core/mcp-docs
Version:
Documentation for GSB MCP implementations
53 lines (39 loc) • 1.32 kB
JavaScript
/**
* Documentation for the startWorkflow operation
*/
/**
* Returns documentation for the startWorkflow operation
* @return {string} markdown documentation
*/
export function startWorkflowDocs() {
return `
The \`startWorkflow\` operation initiates a workflow asynchronously.
This documentation is a placeholder. The startWorkflow operation details will be updated in a future release.
This section will be updated with the correct parameters in a future release.
This section will be updated with the correct response format in a future release.
This section will be updated with examples in a future release.
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