package.json•1.34 kB
{
"name": "langfuse-mcp",
"version": "1.1.0",
"description": "MCP server for Langfuse analytics and cost monitoring with comprehensive metrics, traces, and cost analysis",
"type": "module",
"main": "build/index.js",
"bin": {
"langfuse-mcp": "build/index.js"
},
"files": [
"build/**/*",
"README.md",
"package.json"
],
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"prepare": "npm run build",
"dev": "tsc --watch",
"inspector": "node build/index.js",
"test": "node test-endpoints.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"langfuse",
"analytics",
"llm",
"tracing",
"observability",
"cost-monitoring",
"model-context-protocol"
],
"author": "Sachin Shenoy <therealsachin@users.noreply.github.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/therealsachin/langfuse-mcp.git"
},
"homepage": "https://github.com/therealsachin/langfuse-mcp#readme",
"bugs": {
"url": "https://github.com/therealsachin/langfuse-mcp/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"langfuse": "^3.29.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.10.2",
"dotenv": "^17.2.3",
"typescript": "^5.7.2"
}
}