@gsb-core/mcp-docs
Version:
Documentation for GSB MCP implementations
55 lines (38 loc) • 1.47 kB
text/typescript
/**
* Documentation for the getWorkflowInstanceStatus operation
*/
/**
* Returns documentation for the getWorkflowInstanceStatus operation
* @return {string} markdown documentation
*/
export function getWorkflowInstanceStatusDocs(): string {
return `
The \`getWorkflowInstanceStatus\` operation retrieves the current status of a workflow instance.
This documentation is a placeholder. The getWorkflowInstanceStatus 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 getWorkflowInstanceStatus operation.
* @return {string} A short description of the function.
*/
export function getWorkflowInstanceStatusSummary(): string {
return `
**Purpose**: Checks current execution status of a workflow instance.
**When to use**:
- Monitoring workflow progress
- Determining if workflow is pending/running/completed/failed
**Note**: Placeholder - full documentation coming in future release.
`;
}
export default getWorkflowInstanceStatusDocs;