@gsb-core/mcp-docs
Version:
Documentation for GSB MCP implementations
53 lines (39 loc) • 1.51 kB
JavaScript
/**
* Documentation for the getWorkflowInstanceStatus operation
*/
/**
* Returns documentation for the getWorkflowInstanceStatus operation
* @return {string} markdown documentation
*/
export function getWorkflowInstanceStatusDocs() {
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() {
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;
//# sourceMappingURL=getWorkflowInstanceStatus.js.map