@gsb-core/mcp-docs
Version:
Documentation for GSB MCP implementations
55 lines (38 loc) • 1.42 kB
text/typescript
/**
* Documentation for the queryWorkflowInstances operation
*/
/**
* Returns documentation for the queryWorkflowInstances operation
* @return {string} markdown documentation
*/
export function queryWorkflowInstancesDocs(): string {
return `
The \`queryWorkflowInstances\` operation retrieves workflow instances based on specified criteria.
This documentation is a placeholder. The queryWorkflowInstances 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 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;