Problem
We have a New Relic account in the EU region, but there’s no way to change the region in this MCP server.
Example of a curl request that fails:
curl -X POST https://api.newrelic.com/graphql \
-H 'Content-Type: application/json' \
-H 'API-Key: NRAK-123' \
-d '{"query":"{ actor { user { email } } }"}'
{"errors":[{"message":"not authorized for account region"}]}%
Proposal
If you set it to EU, everything works:
curl -X POST https://api.eu.newrelic.com/graphql \
-H 'Content-Type: application/json' \
-H 'API-Key: NRAK-123' \
-d '{"query":"{ actor { user { email } } }"}'
{"data":{"actor":{"user":{"email":"my.email@gmail.com"}}}}
Need to add the ability in MCP to change the region or base URL.
Problem
We have a New Relic account in the EU region, but there’s no way to change the region in this MCP server.
Example of a curl request that fails:
{"errors":[{"message":"not authorized for account region"}]}%Proposal
If you set it to EU, everything works:
{"data":{"actor":{"user":{"email":"my.email@gmail.com"}}}}Need to add the ability in MCP to change the region or base URL.