Community MCP server for New Relic observability platform. Agents can execute NRQL queries for custom analytics, monitor application performance, analyze error rates and response times, manage alert policies and conditions, and investigate distributed traces. Useful for performance engineering and automated incident analysis.
npx -y @newrelic/mcp-server
{
"mcpServers": {
"new-relic": {
"env": {
"NEW_RELIC_API_KEY": "your-api-key",
"NEW_RELIC_ACCOUNT_ID": "your-account-id"
},
"args": [
"-y",
"@newrelic/mcp-server"
],
"command": "npx"
}
}
}List New Relic alert policies
{
"type": "object",
"required": [
"account_id"
],
"properties": {
"account_id": {
"type": "string"
}
}
}// Input
{
"account_id": "123"
}// Output
{
"policies": [
{
"id": "p1",
"name": "High Error Rate",
"enabled": true
}
]
}Run New Relic NRQL query
{
"type": "object",
"required": [
"query",
"account_id"
],
"properties": {
"query": {
"type": "string"
},
"account_id": {
"type": "string"
}
}
}// Input
{
"query": "SELECT average(duration) FROM Transaction SINCE 1 hour ago",
"account_id": "123"
}// Output
{
"results": [
{
"average.duration": 0.245
}
]
}Community MCP server for New Relic observability platform. Agents can execute NRQL queries for custom analytics, monitor application performance, analyze error rates and response times, manage alert policies and conditions, and investigate distributed traces. Useful for performance engineering and automated incident analysis.
New Relic provides 2 tools including list_alerts, query_nrql.
New Relic offers a free tier with 200 calls per month. For higher usage, paid plans start at €0/month.
You can install New Relic using the following command: npx -y @newrelic/mcp-server. After installation, add the provided config snippet to your Claude Desktop or Cursor configuration.
New Relic is listed under the infrastructure category in the AgentForge MCP registry.
New Relic has a current uptime of 99.78% with an average response time of 250ms.
To connect New Relic, click the "Connect Agent" button on this page to get the configuration snippet. Add it to your MCP client (Claude Desktop, Cursor, or any MCP-compatible tool). Your AI agent will then have access to all of New Relic's tools via the Model Context Protocol.