Stats
Actions
Tags
From woz
Runs a local Node.js MCP server with PostHog analytics integration for event tracking and feature flag evaluation. Requires PostHog project credentials.
Copy this JSON into your .mcp.json to enable this server
Add to your .mcp.json:
{
"mcpServers": {
"code": {
"command": "node",
"args": [
"--no-warnings=ExperimentalWarning",
"${CLAUDE_PLUGIN_ROOT}/servers/code-server.js"
],
"env": {
"WOZCODE_POSTHOG_ENABLED": "true",
"WOZCODE_MCP_CWD_HOOK_INJECTED": "1",
"WOZCODE_POSTHOG_PROJECT_TOKEN": "phc_F3mo2emdspgzD4QmFMQxHQfab1TyXgCAU7eYBakKq9k",
"WOZCODE_POSTHOG_PROJECT_REGION": "us"
}
}
}
}Replace placeholder values for: WOZCODE_POSTHOG_PROJECT_TOKEN
Review these signals before enabling this server
This MCP server needs API keys or credentials. Configure them in your environment before use.
This server has elevated permissions. Review the source code before enabling.
Server configuration and connection parameters
nodeCommand-line arguments passed to the server process
Environment variables set when the server starts
WOZCODE_POSTHOG_ENABLED=trueWOZCODE_MCP_CWD_HOOK_INJECTED=1WOZCODE_POSTHOG_PROJECT_TOKEN=phc_F3mo2emdspgzD4QmFMQxHQfab1TyXgCAU7eYBakKq9kWOZCODE_POSTHOG_PROJECT_REGION=usSensitive values you must provide — never committed to source control
npx claudepluginhub withwoz/wozcode-plugin --plugin woz