@gsb-core/mcp-docs
Version:
Documentation for GSB MCP implementations
53 lines (39 loc) • 1.33 kB
JavaScript
/**
* Documentation for the runWorkflow operation
*/
/**
* Returns documentation for the runWorkflow operation
* @return {string} markdown documentation
*/
export function runWorkflowDocs() {
return `
The \`runWorkflow\` operation executes a workflow synchronously.
This documentation is a placeholder. The runWorkflow 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 runWorkflow operation.
* @return {string} A short description of the function.
*/
export function runWorkflowSummary() {
return `
**Purpose**: Executes a workflow synchronously and waits for completion.
**When to use**:
- Quick workflows without user interaction
- Need immediate results
**Note**: Placeholder - full documentation coming in future release.
`;
}
export default runWorkflowDocs;
//# sourceMappingURL=runWorkflow.js.map