We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9cca7c commit a0bd386Copy full SHA for a0bd386
1 file changed
apps/twig/src/main/services/agent/service.ts
@@ -357,7 +357,13 @@ export class AgentService extends TypedEventEmitter<AgentServiceEvents> {
357
name: "posthog",
358
type: "http",
359
url: mcpUrl,
360
- headers: [{ name: "Authorization", value: `Bearer ${token}` }],
+ headers: [
361
+ { name: "Authorization", value: `Bearer ${token}` },
362
+ {
363
+ name: "x-posthog-project-id",
364
+ value: String(credentials.projectId),
365
+ },
366
+ ],
367
});
368
369
return servers;
0 commit comments