We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9122a5c commit e12e694Copy full SHA for e12e694
src/mcp.ts
@@ -19,7 +19,7 @@ export const runMCPInstall = async (options: {
19
20
const cloudRegion = options.region ?? (await askForCloudRegion());
21
22
- const { personalApiKey = 'helloworld' } = await getOrAskForProjectData({
+ const { personalApiKey } = await getOrAskForProjectData({
23
signup: options.signup,
24
cloudRegion,
25
});
@@ -28,7 +28,7 @@ export const runMCPInstall = async (options: {
28
await abort('Unable to create a personal API key.');
29
}
30
31
- await addMCPServerToClientsStep(personalApiKey, {});
+ await addMCPServerToClientsStep(personalApiKey as string, {});
32
33
clack.outro(`PostHog MCP server added successfully.
34
0 commit comments