What you’ll need
- A New Relic account.
- A New Relic License (ingest) key — the key type used to send data into New Relic. This is not a User key.
- Access to MCP Manager with the Manage OpenTelemetry collector capability.
Step 1: Generate a License (ingest) key in New Relic
MCP Manager authenticates to New Relic with a License key (also called an ingest key). License keys are specifically for sending data into New Relic; User keys are for NerdGraph API access and will not work for OTLP ingestion.Open the API keys page
Create an ingest key
MCP Manager OTEL Logs) and select the account the key belongs to.Copy the key immediately
403 Forbidden on the OTLP ingest endpoint. If you are unsure which you have, create a fresh Ingest - License key.Step 2: Choose your collector URL
New Relic exposes regional OTLP endpoints. Pick the one matching your account’s data region, and include the full/v1/logs path — MCP Manager sends the URL exactly as entered and appends nothing.
https://otlp.nr-data.net:4318/v1/logs and the EU endpoint is https://otlp.eu01.nr-data.net:4318/v1/logs. A few details:
- Port
4318is the standard OTLP/HTTP port. New Relic also accepts traffic on443and4317, but4318is the recommended HTTP port. - The
/v1/logspath is required. MCP Manager does not append path segments, so the URL must end in/v1/logs. - If you are unsure of your region, check your New Relic URL:
one.newrelic.comis US, andone.eu.newrelic.comis EU.
Step 3: Connect MCP Manager to New Relic
New Relic authenticates with a customapi-key header rather than the standard Authorization header. Because MCP Manager’s Request headers field is an open key/value list, you add the api-key header directly — no Bearer or Basic prefix.
Open the OpenTelemetry collector panel
Enter the collector URL
https://otlp.nr-data.net:4318/v1/logs for a US account. (To also export traces, set Traces collector URL to the matching /v1/traces endpoint; this guide covers logs.)Add the api-key request header
- Field name:
api-key - Field value: your License (ingest) key from Step 1
Bearer or Basic prefix.Save the configuration
Step 4: Verify logs are flowing
Trigger an MCP call
tools/list call is enough.Check MCP Manager Alerts if nothing arrives
401 Unauthorized— the License key is incorrect or expired.403 Forbidden— the key is likely a User key rather than a License (ingest) key.404 Not Found— the URL path is wrong (missing/v1/logs).
Note the service name MCP Manager is sending
service.name and service.version MCP Manager is sending. Use those values to find your logs in New Relic.Step 5: Find your logs in New Relic
Once logs are flowing, open Logs in the New Relic left sidebar (under All Capabilities if it is not pinned), or query with NRQL:proxy_request_success and proxy_response_success entries with detailed metadata. There may be a short delay (up to a few minutes) before logs appear in New Relic’s query interface. From here you can build dashboards and alert conditions alongside the rest of your New Relic telemetry.
Troubleshooting
Connected in MCP Manager but no logs in New Relic
Connected in MCP Manager but no logs in New Relic
Export is failing with 401 or 403
Export is failing with 401 or 403
403. Confirm the key belongs to the correct New Relic account, and check in New Relic’s API keys page that the key has not been revoked.Export is failing with 404
Export is failing with 404
/v1/logs path — MCP Manager appends nothing, so the URL must end in /v1/logs. Double-check the host for your region: otlp.nr-data.net for US, otlp.eu01.nr-data.net for EU.Test the connection manually
Test the connection manually
400 Bad Request with a JSON error about an invalid payload means the URL and api-key are both correct — New Relic just rejected the empty test body. That is the response you want; it confirms MCP Manager would reach the endpoint on a real request.
