vaadin-docs-mcp-server
Version:
MCP server for Vaadin documentation with document-based search and full document retrieval
17 lines (16 loc) • 398 B
TypeScript
/**
* Test scenarios for validating MCP server document-based functionality
* These test cases use mock data and don't depend on external services
*/
/**
* Test configuration
*/
interface TestConfig {
restServerUrl: string;
verbose: boolean;
}
/**
* Run all document-based test scenarios
*/
export declare function runHierarchicalTests(config: TestConfig): Promise<void>;
export {};