We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93270fe commit 35ce134Copy full SHA for 35ce134
packages/web-mcp/src/index.ts
@@ -1,6 +1,7 @@
1
#!/usr/bin/env node
2
-import { WebMCPServer } from './server.js';
3
4
-// CLI entry: create and launch web MCP server
5
-const server = new WebMCPServer();
6
-server.launch().catch(console.error);
+// This package is an alias for @midscene/mcp
+// Delegate to the main MCP package which uses the unified launchMCPServer helper
+// with full HTTP transport support and CLI argument parsing
+
7
+require('@midscene/mcp');
0 commit comments