package.json•1.37 kB
{
"name": "@mendeel/mcp-mixpanel",
"version": "1.0.4",
"description": "A Model Context Protocol (MCP) server for Mixpanel analytics, providing AI assistants with access to Mixpanel data, events, and analytics.",
"type": "module",
"main": "./build/index.js",
"bin": {
"mcp-mixpanel": "build/index.js"
},
"files": [
"build/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf build",
"prepublishOnly": "npm run clean && npm run build && chmod +x build/index.js",
"postinstall": "chmod +x ./build/index.js 2>/dev/null || true",
"start": "node build/index.js",
"dev": "tsc && node build/index.js",
"test": "echo \"No tests specified\" && exit 0"
},
"keywords": [
"mcp",
"model-context-protocol",
"mixpanel",
"analytics",
"data",
"events",
"ai-tools",
"claude",
"copilot"
],
"author": "Your Name <your.email@example.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mendel/mixpanel-mcp.git"
},
"bugs": {
"url": "https://github.com/mendel/mixpanel-mcp/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.16.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.10.5",
"typescript": "^5.7.2"
}
}