Skip to content

Commit 7516594

Browse files
committed
Add New Relic MCP server
Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> Claude-Session: https://claude.ai/code/session_01S58U7phvDgphx6ZTXuWMJQ
1 parent ee298ab commit 7516594

1 file changed

Lines changed: 68 additions & 0 deletions

File tree

servers/com.newrelic-mcp.json

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.newrelic-mcp",
4+
"name": "New Relic",
5+
"alias": "newrelic",
6+
"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.",
7+
"logo": "https://avatars.githubusercontent.com/u/31739?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"monitoring"
11+
],
12+
"tags": [
13+
"new-relic",
14+
"observability",
15+
"monitoring",
16+
"apm",
17+
"nrql",
18+
"telemetry"
19+
],
20+
"transport": {
21+
"type": "http",
22+
"url": "https://mcp.newrelic.com/mcp/",
23+
"headers": {
24+
"Api-Key": "${input:NEW_RELIC_API_KEY}"
25+
},
26+
"metadata": {
27+
"inputs": [
28+
{
29+
"id": "NEW_RELIC_API_KEY",
30+
"label": "New Relic User API Key",
31+
"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.",
32+
"type": "text",
33+
"required": true,
34+
"secret": true,
35+
"placeholder": "NRAK-****************************",
36+
"obtain": {
37+
"url": "https://one.newrelic.com/admin-portal/api-keys/home",
38+
"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-...)",
39+
"button_label": "Get API Key"
40+
}
41+
}
42+
]
43+
}
44+
},
45+
"auth": {
46+
"type": "api_key",
47+
"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."
48+
},
49+
"contributor": {
50+
"name": "New Relic",
51+
"github": "newrelic",
52+
"url": "https://newrelic.com"
53+
},
54+
"links": {
55+
"repository": "https://github.com/newrelic/mcp-server",
56+
"homepage": "https://newrelic.com",
57+
"documentation": "https://docs.newrelic.com/docs/agentic-ai/mcp/overview/"
58+
},
59+
"platforms": [
60+
"all"
61+
],
62+
"capabilities": {
63+
"tools": true,
64+
"resources": false,
65+
"prompts": false,
66+
"read_only_mode": false
67+
}
68+
}

0 commit comments

Comments
 (0)