mcp-adr-analysis-server
Version:
MCP server for analyzing Architectural Decision Records and project architecture
27 lines • 740 B
JavaScript
/**
* CE-MCP (Code Execution with MCP) Type Definitions
*
* These types define the orchestration directive system that replaces
* direct OpenRouter calls with host LLM-generated execution code.
*
* @see ADR-014: CE-MCP Architecture
*/
/**
* Type guard for orchestration directive
*/
export function isOrchestrationDirective(response) {
return response.type === 'orchestration_directive';
}
/**
* Type guard for state machine directive
*/
export function isStateMachineDirective(response) {
return response.type === 'state_machine_directive';
}
/**
* Type guard for traditional content response
*/
export function isContentResponse(response) {
return response.type === 'content';
}
//# sourceMappingURL=ce-mcp.js.map