package.jsonโข1.84 kB
{
"name": "@leval/mcp-grafana",
"version": "1.0.3",
"description": "Model Context Protocol (MCP) server for Grafana - Complete TypeScript implementation with all tools",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"mcp-grafana": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx watch src/cli.ts",
"start": "node dist/cli.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts",
"format": "prettier --write 'src/**/*.ts'",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/levalhq/mcp-grafana.git"
},
"bugs": {
"url": "https://github.com/levalhq/mcp-grafana/issues"
},
"homepage": "https://github.com/levalhq/mcp-grafana#readme",
"keywords": [
"mcp",
"grafana",
"model-context-protocol",
"ai",
"assistant",
"monitoring",
"observability"
],
"author": "Grafana Labs",
"license": "Apache-2.0",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"axios": "^1.7.9",
"commander": "^12.1.0",
"dotenv": "^16.4.7",
"jsonpath": "^1.1.1",
"pino": "^9.5.0",
"pino-pretty": "^11.3.0",
"zod": "^3.24.1",
"zod-to-json-schema": "^3.24.1"
},
"devDependencies": {
"@types/jsonpath": "^0.2.4",
"@types/node": "^22.10.6",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}