PostHog MCP Server

Official

create_posthog_annotation

Create a PostHog annotation.

Args: project_id: The ID of the project as an integer (e.g. 99423) content: The content/text of the annotation date_marker: Optional ISO-8601 timestamp for the annotation (e.g. 2024-03-20T14:15:22Z)

Input Schema

NameRequiredDescriptionDefault
contentYes
date_markerNo
project_idYes

Input Schema (JSON Schema)

{ "properties": { "content": { "title": "Content", "type": "string" }, "date_marker": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Date Marker" }, "project_id": { "title": "Project Id", "type": "integer" } }, "required": [ "project_id", "content" ], "title": "create_posthog_annotationArguments", "type": "object" }