Server data from the Official MCP Registry
Secure, self-hosted New Relic observability and administration tools for MCP clients
About
Secure, self-hosted New Relic observability and administration tools for MCP clients
Security Report
Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. Package registry verified. Imported from the Official MCP Registry.
5 files analyzed ยท 1 issue found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
What You'll Need
Set these up before or after installing:
Environment variable: NEW_RELIC_API_KEY
Environment variable: NEW_RELIC_REGION
Environment variable: NEW_RELIC_DEFAULT_ACCOUNT_ID
Environment variable: NEW_RELIC_ACCOUNT_ALLOWLIST
How to Install
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-meet-bhalodiya-newrelic-mcp": {
"env": {
"NEW_RELIC_REGION": "your-new-relic-region-here",
"NEW_RELIC_API_KEY": "your-new-relic-api-key-here",
"NEW_RELIC_ACCOUNT_ALLOWLIST": "your-new-relic-account-allowlist-here",
"NEW_RELIC_DEFAULT_ACCOUNT_ID": "your-new-relic-default-account-id-here"
},
"args": [
"-y",
"@meet-bhalodiya/newrelic-mcp",
"-y",
"@meet-bhalodiya/newrelic-mcp@1.0.0"
],
"command": "npx"
}
}
}Documentation
View on GitHubFrom the project's GitHub README.
New Relic MCP Server
Connect your AI assistant to New Relic โ safely.
A production-oriented, self-hostable Model Context Protocol (MCP) server that gives Claude, Cursor, Codex, and other MCP clients typed, read-only-by-default access to NRQL, logs, metrics, traces, errors, entities, alerts, incidents, dashboards, synthetics, workloads, service levels, and selected administration APIs โ all over New Relic's NerdGraph.
It deliberately does not expose arbitrary GraphQL, forward client credentials to New Relic, or accept New Relic keys as tool arguments. Mutations are absent unless their feature gates are explicitly enabled, and every write uses a dry-run, confirmation phrase, and post-write readback workflow.
Highlights
- ๐ Safe by default โ read-only out of the box; writes are opt-in, gated, and run a dry-run โ confirmation-phrase โ post-write readback flow.
- ๐งฑ Bounded API surface โ a fixed, documented set of NerdGraph operations; no arbitrary GraphQL and no credentials passed as tool arguments.
- ๐ Works with any MCP client โ Claude Code, Claude Desktop, Cursor, Codex, and more, over stdio or stateless Streamable HTTP.
- ๐ Usage telemetry built in โ a Prometheus
/metricsendpoint with per-tool call counts, durations, and outcomes, plus upstream NerdGraph, queue-depth, retry, rate-limit, and cache metrics. - ๐ข Enterprise-ready โ bearer/OIDC authentication, Host/Origin allowlists, account allowlists, secret and PII redaction, Docker, and Helm.
- ๐งฐ Broad coverage โ independently selectable toolsets for NRQL, entities, alerts, dashboards, synthetics, workloads, service levels, logs, and metrics.
- ๐ Documented and tested โ architecture docs, ADRs, and a unit/integration/contract/security/load test suite that gates every change in CI.
What you can ask
Once connected, ask your MCP client in plain language โ it selects and calls the right read-only tools for you:
- "What are the slowest transactions for the checkout service in the last hour?"
- "Summarize the open incidents for the payments team and their likely causes."
- "Which service levels are at risk of missing their objective this week?"
- "Review my alert policies and point out coverage gaps."
- "Why did the login synthetic monitor fail overnight?"
See the tool catalog for the complete set of capabilities.
Why this MCP?
New Relic offers an official, New Relic-hosted MCP server (New Relic AI MCP, currently in preview). This project is a complementary, self-hostable and open-source alternative. Choose it when you want:
- Self-hosting and control โ run the MCP bridge inside your own network with your own credentials; only outbound NerdGraph calls leave your perimeter. (New Relic's preview is not offered for FedRAMP-regulated accounts.)
- Read-only by default, with gated writes โ every mutation is opt-in and runs a dry-run โ confirmation-phrase โ readback flow.
- A fixed, auditable operation surface โ a documented set of NerdGraph operations, with no arbitrary GraphQL and no New Relic keys passed as tool arguments.
- Your own controls โ bearer/OIDC auth, Host/Origin and account allowlists, secret redaction, and independently selectable toolsets.
- First-class telemetry โ Prometheus metrics for tool usage and upstream calls that you can scrape into your existing observability stack.
- Apache-2.0 and forkable โ inspect, pin, and extend exactly what you deploy.
If you'd rather have a zero-operations, New Relic-managed experience integrated with New Relic AI, the official server may be the better fit. This project trades that convenience for self-hosting, control, and auditability.
Project status: 1.0.0. Review the supported operation matrix and validate permissions against a non-production New Relic account before enabling writes. The MCP Registry, npm, container, and MCPB metadata are prepared, but this repository does not publish artifacts without maintainer credentials.
Requirements
- Node.js 22.7.5 or newer; Node 24 LTS is recommended for production.
- A New Relic user key with only the permissions the enabled toolsets require.
- A New Relic account using the US or EU endpoint, or a verified JP compatibility endpoint deployment (see configuration).
- An MCP client supporting stdio or Streamable HTTP.
New Relic applies a limit of 25 concurrent NerdGraph requests per user across all keys owned by that user. This server defaults to 20 total requests and five complex NRQL queries. See performance and scaling before adding replicas. Ordinary HTTP calls are sessionless; prompt SDK cancellation across multiple replicas additionally requires deterministic load-balancer affinity.
Quick start: stdio
Install the package globally:
npm install --global @meet-bhalodiya/newrelic-mcp
export NEW_RELIC_API_KEY='NRAK-...'
export NEW_RELIC_REGION='US'
newrelic-mcp doctor --json
newrelic-mcp
Or let the MCP client invoke the pinned package through npx:
NEW_RELIC_API_KEY='NRAK-...' \
npx -y @meet-bhalodiya/newrelic-mcp@1.0.0 doctor --json
Stdio reserves stdout for MCP frames. Runtime diagnostics and logs go to stderr.
Quick start: authenticated HTTP
Create two files readable only by the service account:
install -m 0700 -d ./secrets
printf '%s' "$NEW_RELIC_API_KEY" > ./secrets/new_relic_api_key
openssl rand -hex 32 > ./secrets/mcp_bearer_token
chmod 0400 ./secrets/*
Start a loopback-only container:
docker compose up --build
The MCP endpoint is http://127.0.0.1:3000/mcp; health probes are at /healthz
and /readyz. Docker Compose deliberately enables static bearer authentication.
Read the token from ./secrets/mcp_bearer_token and send it in
Authorization: Bearer <token>.
For a native process:
export NEW_RELIC_API_KEY_FILE="$PWD/secrets/new_relic_api_key"
export MCP_AUTH_MODE=bearer
export MCP_BEARER_TOKEN_FILE="$PWD/secrets/mcp_bearer_token"
newrelic-mcp http --host 127.0.0.1 --port 3000
Non-loopback HTTP must use bearer or OIDC auth, an explicit Host allowlist, TLS at the reverse proxy, and an Origin allowlist for browser clients. See deployment and security.
Client setup
These short examples use the read-only stdio server. The full guide includes remote bearer and OAuth setups plus client-specific caveats.
Claude Code
claude mcp add --transport stdio --scope user \
--env NEW_RELIC_API_KEY="$NEW_RELIC_API_KEY" \
--env NEW_RELIC_REGION=US \
newrelic -- npx -y @meet-bhalodiya/newrelic-mcp@1.0.0
Use /mcp inside Claude Code to verify the connection.
Claude Desktop
For the safest local installation, build or download the .mcpb bundle and use
Settings โ Extensions โ Advanced settings โ Install Extension. Claude Desktop
stores fields marked sensitive in OS secure storage. A manual local stdio JSON
example is in client configuration. Remote servers
must be added through Settings โ Connectors, not claude_desktop_config.json.
Cursor
Copy examples/cursor.mcp.json to .cursor/mcp.json
for one project or ~/.cursor/mcp.json globally. Launch Cursor from an environment
where NEW_RELIC_API_KEY is available, then enable the server under MCP settings.
Codex
codex mcp add newrelic \
--env NEW_RELIC_REGION=US \
--env NEW_RELIC_API_KEY="$NEW_RELIC_API_KEY" \
-- npx -y @meet-bhalodiya/newrelic-mcp@1.0.0
codex mcp list
Codex CLI, the Codex IDE extension, and the ChatGPT desktop app on the same Codex
host share config.toml. See the Codex examples
for Streamable HTTP bearer and OAuth modes.
CLI
newrelic-mcp [stdio]
newrelic-mcp http [--host HOST] [--port PORT]
newrelic-mcp doctor [--json]
newrelic-mcp tools [--json]
stdio(or no subcommand) starts the local transport.httpserves sessionless Streamable HTTP at/mcpplus health endpoints; its bounded cancellation registry is process-local.doctorvalidates configuration, credentials, region, accessible accounts, and one bounded fixed-query schema selection for every effectively enabled toolset; it never issues mutations or prints secrets.toolsreports enabled toolsets and safety gates without contacting New Relic.
Safety model
| Capability | Default | Required setting |
|---|---|---|
| Read tools | enabled by selected toolsets | NEW_RELIC_TOOLSETS |
| Ordinary writes | off | NEW_RELIC_ENABLE_WRITES=true |
| Delete, cancel, revoke, replacement update, public exposure, suppression | off | writes plus NEW_RELIC_ENABLE_DESTRUCTIVE=true |
| Organization administration | off | NEW_RELIC_ENABLE_ADMIN=true and appropriate auth scope |
| Preview data-management APIs | off | NEW_RELIC_ENABLE_PREVIEW_APIS=true |
| Experimental AI issue actions | off | NEW_RELIC_ENABLE_EXPERIMENTAL_AI_ISSUES=true |
Enabling a gate registers the corresponding tool; it does not bypass New Relic permissions or HTTP authorization scopes. Writes still default to dry-run. Apply the exact confirmation phrase returned by the dry-run using otherwise identical arguments. Confirmation phrases bind to the normalized change and the pre-read state; another state change requires a fresh dry-run.
The project deliberately excludes API-key creation, synthetic secure-credential mutation, live-dashboard passwords and resets, historical-export URLs, Slack destination creation, arbitrary entity deletion, telemetry ingest, and raw GraphQL.
Toolsets and MCP capabilities
The default read surface is split into independently selectable toolsets:
corenrqlentitiesalertsdashboardssyntheticsworkloadsservice-levelslogsmetricsadmin(never enabled implicitly)
Use newrelic-mcp tools --json for the exact runtime catalog and
tool-catalog.md for descriptions. Resources include server
capabilities, accounts, and typed entity/configuration templates. Static prompts
cover incident triage, service health, alert policy review, SLO review, dashboard
design, and synthetic failure analysis. Tools remain the authoritative universal
interface because prompt and resource support varies between MCP clients.
Configuration
Configuration is validated at startup. The most important settings are:
NEW_RELIC_API_KEY= # xor NEW_RELIC_API_KEY_FILE
NEW_RELIC_REGION=US # US, EU, or JP
NEW_RELIC_DEFAULT_ACCOUNT_ID=
NEW_RELIC_ACCOUNT_ALLOWLIST=
NEW_RELIC_TOOLSETS=core,nrql,entities
MCP_AUTH_MODE=none # none, bearer, oidc
File-based secrets are preferred for services and take the same value as their environment equivalents. Do not set both forms. Review configuration.md for precedence, every setting, validation rules, and examples.
Development
npm ci
npm run build
npm run lint
npm run typecheck
npm test
npm run verify
npm pack --dry-run
Run locally with a workspace-specific HTTP port:
CONDUCTOR_PORT=3100 npm run dev:http
Opt-in live tests require an explicit account and are read-only unless the separate disposable-account write flag is set. See development.md and CONTRIBUTING.md.
Documentation
- Architecture
- Configuration reference
- Tool catalog
- New Relic permissions and editions
- Client configuration
- Deployment
- Performance
- Security and threat model
- Troubleshooting
- Official API source matrix
- Release process
- Dependency policy
- Architecture decisions
Contributing
Contributions are welcome โ bug reports, features backed by official New Relic documentation, docs, and tests. Start with CONTRIBUTING.md and the good first issues. All participation follows the Code of Conduct.
If this project is useful to you or your team, a โญ helps others discover it.
Support and security
Need help? See SUPPORT.md. Use GitHub Issues for reproducible bugs and feature requests, and never include New Relic keys, bearer tokens, NRQL, account data, entity details, raw responses, or presigned URLs.
Report vulnerabilities privately according to SECURITY.md.
License
Apache License 2.0. See LICENSE.
Reviews
No reviews yet
Be the first to review this server!
More Developer Tools MCP Servers
Fetch
Freeby Modelcontextprotocol ยท Developer Tools
Web content fetching and conversion for efficient LLM usage
Toleno
Freeby Toleno ยท Developer Tools
Toleno Network MCP Server โ Manage your Toleno mining account with Claude AI using natural language.
mcp-creator-python
Freeby mcp-marketplace ยท Developer Tools
Create, build, and publish Python MCP servers to PyPI โ conversationally.
MarkItDown
Freeby Microsoft ยท Content & Media
Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption
MCP Marketplace
Freeby mcp-marketplace ยท Developer Tools
Search and install MCP servers from inside your AI client.
FinAgent
Freeby mcp-marketplace ยท Finance
Free stock data and market news for any MCP-compatible AI assistant.
