Creativity · MCP — server

MCP New Relic Server

New Relic unifies APM, infrastructure, logs, and synthetic monitoring behind NRQL (New Relic Query Language). The MCP New Relic Server lets Claude run NRQL, list dashboards, and fetch entity metadata — turning the model into an on-call buddy for application performance.

MCP facts

Kind
server
Ecosystem
anthropic-mcp
Language
TypeScript / Node.js
Transports
stdio

Capabilities

  • Tools: search_entities, run_nrql, get_dashboard, get_alert_policies
  • Uses NerdGraph GraphQL API
  • Region-aware (US / EU data centers)

Install

npx -y @modelcontextprotocol-community/server-newrelic

Configuration

{
  "mcpServers": {
    "newrelic": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol-community/server-newrelic"],
      "env": {
        "NEW_RELIC_API_KEY": "<user-api-key>",
        "NEW_RELIC_ACCOUNT_ID": "<account-id>",
        "NEW_RELIC_REGION": "US"
      }
    }
  }
}

Frequently asked questions

What does a typical query look like?

Claude can call run_nrql with something like SELECT percentile(duration, 95) FROM Transaction WHERE appName = 'api' SINCE 1 hour ago — then summarize the result.

Does it support Alerts?

Yes — fetching alert policies and incident data works well. Mutating alert policies is usually gated or disabled.

What about logs?

New Relic Logs live in NRDB; NRQL against Log event types works via the same run_nrql tool.

Sources

  1. New Relic NerdGraph API — accessed 2026-04-20
  2. Model Context Protocol — accessed 2026-04-20