From 7516594b13affdd6553afcebaee914c88a96934b Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 25 Jun 2026 21:13:53 +0800 Subject: [PATCH] Add New Relic MCP server Signed-off-by: Mohammod Al Amin Ashik Claude-Session: https://claude.ai/code/session_01S58U7phvDgphx6ZTXuWMJQ --- servers/com.newrelic-mcp.json | 68 +++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 servers/com.newrelic-mcp.json diff --git a/servers/com.newrelic-mcp.json b/servers/com.newrelic-mcp.json new file mode 100644 index 0000000..08427bd --- /dev/null +++ b/servers/com.newrelic-mcp.json @@ -0,0 +1,68 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "com.newrelic-mcp", + "name": "New Relic", + "alias": "newrelic", + "description": "Query and analyze your New Relic observability data through New Relic's official hosted remote MCP server. Run NRQL queries, inspect dashboards, alerts, APM, and entity data. Authenticates with a New Relic User API key sent via the Api-Key header.", + "logo": "https://avatars.githubusercontent.com/u/31739?v=4", + "schema_version": "2.1", + "categories": [ + "monitoring" + ], + "tags": [ + "new-relic", + "observability", + "monitoring", + "apm", + "nrql", + "telemetry" + ], + "transport": { + "type": "http", + "url": "https://mcp.newrelic.com/mcp/", + "headers": { + "Api-Key": "${input:NEW_RELIC_API_KEY}" + }, + "metadata": { + "inputs": [ + { + "id": "NEW_RELIC_API_KEY", + "label": "New Relic User API Key", + "description": "A New Relic User API key (starts with NRAK-). The MCP server inherits this user's role-based permissions and account context. If your account is in the EU region, use the EU endpoint https://mcp.eu.newrelic.com/mcp/ instead.", + "type": "text", + "required": true, + "secret": true, + "placeholder": "NRAK-****************************", + "obtain": { + "url": "https://one.newrelic.com/admin-portal/api-keys/home", + "instructions": "1. Log in to New Relic\n2. Open the user menu and choose API keys\n3. Create a new User key (or copy an existing one)\n4. Copy the key (format NRAK-...)", + "button_label": "Get API Key" + } + } + ] + } + }, + "auth": { + "type": "api_key", + "instructions": "Create a New Relic User API key (NRAK-...) from API keys in your New Relic account and provide it as the Api-Key header. The server inherits your user's permissions." + }, + "contributor": { + "name": "New Relic", + "github": "newrelic", + "url": "https://newrelic.com" + }, + "links": { + "repository": "https://github.com/newrelic/mcp-server", + "homepage": "https://newrelic.com", + "documentation": "https://docs.newrelic.com/docs/agentic-ai/mcp/overview/" + }, + "platforms": [ + "all" + ], + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": false + } +}