This repository was archived by the owner on Jan 19, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.54 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "posthog-mcp-monorepo",
"version": "0.0.0",
"private": true,
"scripts": {
"prepare": "husky",
"dev": "cd typescript && pnpm dev",
"build": "cd typescript && pnpm build",
"inspector": "cd typescript && pnpm inspector",
"schema:build:json": "tsx typescript/scripts/generate-tool-schema.ts",
"test": "cd typescript && pnpm test",
"test:integration": "cd typescript && pnpm test:integration",
"schema:build:python": "bash python/scripts/generate-pydantic-models.sh",
"schema:build": "pnpm run schema:build:json && pnpm run schema:build:python",
"format": "biome format --write",
"lint": "biome lint --fix",
"format:python": "cd python && uv run ruff format .",
"lint:python": "cd python && uv run ruff check --fix .",
"test:python": "cd python && uv run pytest tests/ -v",
"typecheck": "cd typescript && pnpm typecheck",
"typecheck:python": "cd python && uvx ty check",
"docker:build": "docker build -t posthog-mcp .",
"docker:run": "docker run -i --rm --env POSTHOG_AUTH_HEADER=${POSTHOG_AUTH_HEADER} --env POSTHOG_REMOTE_MCP_URL=${POSTHOG_REMOTE_MCP_URL:-https://mcp.posthog.com/mcp} posthog-mcp",
"docker:inspector": "npx @modelcontextprotocol/inspector docker run -i --rm --env POSTHOG_AUTH_HEADER=${POSTHOG_AUTH_HEADER} --env POSTHOG_REMOTE_MCP_URL=${POSTHOG_REMOTE_MCP_URL:-https://mcp.posthog.com/mcp} posthog-mcp"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"husky": "^9.1.7",
"tsx": "^4.20.3"
},
"packageManager": "pnpm@9.15.5+sha256.8472168c3e1fd0bff287e694b053fccbbf20579a3ff9526b6333beab8df65a8d"
}