UNPKG

@gsb-core/mcp-docs

Version:

Documentation for GSB MCP implementations

55 lines (38 loc) 1.42 kB
/** * Documentation for the queryWorkflowInstances operation */ /** * Returns documentation for the queryWorkflowInstances operation * @return {string} markdown documentation */ export function queryWorkflowInstancesDocs(): string { return ` # QueryWorkflowInstances Operation ## General Description The \`queryWorkflowInstances\` operation retrieves workflow instances based on specified criteria. ## Detailed Description This documentation is a placeholder. The queryWorkflowInstances 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 queryWorkflowInstances operation. * @return {string} A short description of the function. */ export function queryWorkflowInstancesSummary(): string { return ` **Purpose**: Searches for workflow instances based on criteria. **When to use**: - Finding workflows by status/type/date - Monitoring workflow executions **Note**: Placeholder - full documentation coming in future release. `; } export default queryWorkflowInstancesDocs;