@posthog/mcp 0.0.0 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  TypeScript SDK for instrumenting Model Context Protocol servers with PostHog analytics.
4
4
 
5
- > [!WARNING]
5
+ > Warning:
6
6
  > This package is in very early access and is not suitable for production use yet.
7
7
  > The API, event names, PostHog property schema, tracing behavior, and release process may change without notice while we dogfood the SDK.
8
8
  > We publish in public because PostHog builds in public, but you should treat `0.0.x` releases as experimental.
@@ -71,6 +71,13 @@ pnpm fix
71
71
 
72
72
  `pnpm typecheck` uses the TypeScript 7 native preview via `tsgo`.
73
73
 
74
+ ## Releases
75
+
76
+ Releases are semi-automatic through Changesets and GitHub Actions.
77
+ See [RELEASE.md](./RELEASE.md) for the release process.
78
+
79
+ Release approval requests are posted in Slack to `#approvals-client-libraries`.
80
+
74
81
  ## Attribution
75
82
 
76
83
  This SDK started from a duplicated copy of the MIT-licensed [MCPcat TypeScript SDK](https://github.com/MCPCat/mcpcat-typescript-sdk). We are grateful for their work on MCP server instrumentation patterns, especially tool-call tracing, context capture, and MCP SDK compatibility handling.
package/dist/index.cjs CHANGED
@@ -701,7 +701,7 @@ function sanitizeParameters(obj) {
701
701
  }
702
702
  //#endregion
703
703
  //#region package.json
704
- var version = "0.0.0";
704
+ var version = "0.0.2";
705
705
  //#endregion
706
706
  //#region src/modules/session.ts
707
707
  function newSessionId() {
package/dist/index.mjs CHANGED
@@ -700,7 +700,7 @@ function sanitizeParameters(obj) {
700
700
  }
701
701
  //#endregion
702
702
  //#region package.json
703
- var version = "0.0.0";
703
+ var version = "0.0.2";
704
704
  //#endregion
705
705
  //#region src/modules/session.ts
706
706
  function newSessionId() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@posthog/mcp",
3
- "version": "0.0.0",
3
+ "version": "0.0.2",
4
4
  "description": "PostHog SDK for MCP servers",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",