package.json•3.27 kB
{
"name": "newrelic-mcp",
"version": "2.0.0",
"description": "Model Context Protocol server for New Relic observability platform integration",
"module": "./src/server.ts",
"main": "dist/server.js",
"bin": {
"newrelic-mcp": "./dist/server.js"
},
"files": [
"dist/",
"README.md",
"LICENSE",
"package.json"
],
"directories": {
"test": "test",
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cloudbring/newrelic-mcp.git"
},
"bugs": {
"url": "https://github.com/cloudbring/newrelic-mcp/issues"
},
"homepage": "https://github.com/cloudbring/newrelic-mcp#readme",
"scripts": {
"build": "tsc",
"dev": "tsx src/server.ts",
"start": "node dist/server.js",
"test": "vitest",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:integration": "USE_REAL_ENV=true vitest",
"test:bdd": "vitest --run test/features/**/*.spec.ts",
"test:unit": "vitest --run test/**/*.test.ts",
"test:eval": "evalite",
"test:eval:watch": "evalite watch",
"typecheck": "tsc --noEmit",
"lint": "npx ultracite lint",
"lint:fix": "npx ultracite format",
"format": "npx ultracite format",
"format:check": "npx ultracite lint",
"ai:test": "vitest --run",
"ai:test:watch": "vitest",
"ai:test:coverage": "vitest --coverage --run",
"ai:test:integration": "USE_REAL_ENV=true vitest --run",
"ai:lint": "biome lint --max-diagnostics=none --reporter=summary .",
"ai:check": "biome check --max-diagnostics=none --reporter=summary .",
"ai:ci": "biome ci --max-diagnostics=none --reporter=summary .",
"ai:format": "biome format --write .",
"ai:format:check": "biome format .",
"inspect": "npx @modelcontextprotocol/inspector node dist/server.js",
"inspect:dev": "npx @modelcontextprotocol/inspector tsx src/server.ts",
"inspect:env": "./scripts/run-inspector.sh",
"test:server": "node scripts/test-server.js",
"prepare": "husky"
},
"keywords": [
"mcp",
"modelcontextprotocol",
"newrelic",
"observability",
"monitoring",
"apm",
"nrql",
"alerts",
"synthetics",
"ai",
"llm",
"claude"
],
"author": "@cloudbring",
"license": "MIT",
"devDependencies": {
"@amiceli/vitest-cucumber": "^5.1.2",
"@biomejs/biome": "^2.1.3",
"@cucumber/gherkin": "^33.1.0",
"@types/node": "^24.2.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"autoevals": "^0.0.130",
"evalite": "^0.11.4",
"husky": "^9.1.7",
"lint-staged": "^16.1.4",
"tsx": "^4.20.3",
"typescript": "^5.9.2",
"ultracite": "^5.1.2",
"vitest": "^3.2.4"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.1",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/auto-instrumentations-node": "^0.62.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.203.0",
"@opentelemetry/instrumentation-winston": "^0.48.0",
"@opentelemetry/resources": "^2.0.1",
"@opentelemetry/sdk-node": "^0.203.0",
"@opentelemetry/semantic-conventions": "^1.36.0",
"dotenv": "^17.2.1",
"newrelic": "^13.0.0",
"winston": "^3.17.0",
"zod": "^3.25.76"
}
}