@gsb-core/mcp-docs
Version:
Documentation for GSB MCP implementations
55 lines (38 loc) • 1.3 kB
text/typescript
/**
* Documentation for the startWorkflow operation
*/
/**
* Returns documentation for the startWorkflow operation
* @return {string} markdown documentation
*/
export function startWorkflowDocs(): string {
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(): string {
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;