run_nrql_query
Execute NRQL queries to analyze New Relic metrics and events directly from the MCP Server, enabling targeted data insights with optional account-specific filtering.
Instructions
Execute NRQL queries against New Relic data to analyze metrics and events
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| nrql | Yes | The NRQL query to execute | |
| target_account_id | No | Optional New Relic account ID to query |
Input Schema (JSON Schema)
{
"properties": {
"nrql": {
"description": "The NRQL query to execute",
"type": "string"
},
"target_account_id": {
"description": "Optional New Relic account ID to query",
"type": "string"
}
},
"required": [
"nrql"
],
"type": "object"
}