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 e8ee74b commit 22794a5Copy full SHA for 22794a5
src/index.ts
@@ -12,6 +12,7 @@ import addBrowserLiveTools from "./tools/live";
12
import addAccessibilityTools from "./tools/accessibility";
13
import addAutomateTools from "./tools/automate";
14
import addTestManagementTools from "./tools/testmanagement";
15
+import { trackMCP } from "./lib/instrumentation";
16
17
function registerTools(server: McpServer) {
18
addSDKTools(server);
@@ -42,6 +43,7 @@ async function main() {
42
43
await server.connect(transport);
44
45
logger.info("MCP server started successfully");
46
+ trackMCP("started", server.server.getClientVersion()!);
47
}
48
49
main().catch(console.error);
0 commit comments