We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/lucad87/mcp-server-tests-migration'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.js•635 B
#!/usr/bin/env node
/**
* MCP Test Migration Server
* Entry point for CLI usage
*
* This server helps migrate WebDriverIO tests to Playwright
* using AST-based transformations.
*/
import { TestMigrationServer, createServer } from './src/index.js';
// Export for HTTP server and programmatic usage
export { TestMigrationServer, createServer };
// Re-export utilities for direct usage
export * from './src/index.js';
// Run as CLI if executed directly
const isMainModule = import.meta.url === `file://${process.argv[1]}`;
if (isMainModule) {
const server = new TestMigrationServer();
server.run().catch(console.error);
}