Sponsored by Deepsite.site

New Relic NerdGraph MCP Server

Created By
ulucaydin8 months ago
The Unofficial MCP Server for New Relic (Alpha)
Content

New Relic NerdGraph MCP Server

License: MIT

This repository provides a Model Context Protocol (MCP) server for interacting with the New Relic NerdGraph API. It allows MCP clients (like Claude Desktop) to use natural language or specific commands to query and interact with your New Relic account data and features.

Built using the fastmcp framework.

Features

This MCP server exposes various New Relic capabilities as tools and resources, including:

  • Account Details: Fetch basic information about the configured account.
  • Generic NerdGraph Queries: Execute arbitrary NerdGraph queries.
  • NRQL Queries: Run specific NRQL queries against your account data.
  • Entity Management: Search for entities (Applications, Hosts, Monitors, etc.) and retrieve detailed information by GUID.
  • APM: List Application Performance Monitoring (APM) applications.
  • Synthetics: List Synthetic monitors and create simple browser monitors.
  • Alerts: List alert policies, view open incidents, and acknowledge incidents.

Prerequisites

  • Python: Python 3.10+ recommended (as required by fastmcp).
  • pip: Python package installer.
  • New Relic Account: Access to a New Relic account.
  • New Relic User API Key: A User API key is required for authentication. You can generate one here. Keep this key secure!
  • New Relic Account ID: Your New Relic Account ID is needed for most operations. You can find it in the New Relic UI (often in the URL or account settings).

Setup & Installation

  1. Clone the Repository:

    git clone <repository_url> # Replace <repository_url> with the actual URL
    cd mcp-server-newrelic
    
  2. Install Dependencies:

    pip install -r requirements.txt
    

    This will install fastmcp, requests, and their dependencies.

Configuration

The server requires your New Relic API Key and Account ID to function. Configure these using environment variables before running the server:

# Replace YOUR_API_KEY and YOUR_ACCOUNT_ID with your actual credentials
export NEW_RELIC_API_KEY="YOUR_API_KEY"
export NEW_RELIC_ACCOUNT_ID="YOUR_ACCOUNT_ID"

Security Note: Do not hardcode your API key in the source code. Using environment variables is the recommended approach. You can also use tools like direnv or place these export commands in your shell profile (.zshrc, .bashrc, etc.) for persistence, but be mindful of the security implications.

Running the Server

Once configured, start the server using the fastmcp command-line tool:

fastmcp run server.py:mcp
  • server.py: The main entry point script.
  • mcp: The name of the FastMCP instance created within server.py.

The server will start, print registration messages, and listen for incoming MCP connections (typically on port 8000 by default, managed by fastmcp). You should see output similar to:

Using New Relic Account ID: YOUR_ACCOUNT_ID
Registering common features...
Registering entity features...
Registering APM features...
Registering Synthetics features...
Registering Alerts features...
Feature registration complete.
INFO:     Started server process [XXXXX]
INFO:     Waiting for application startup.
INFO:     Application startup complete.
INFO:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)

Leave this terminal window running.

Usage with MCP Clients

  1. Start the MCP Server (as described above).

  2. Restart your MCP Client (e.g., Claude Desktop).

  3. The client should automatically detect the running server and connect to it. You might see an indicator (like a 🔨 icon in Claude Desktop) showing that external tools are available.

  4. You can now interact with your New Relic account using natural language or by directly invoking the tools listed below.

    • Natural Language Example: "Show me my APM applications" or "List open critical incidents in account 1234567"
    • Direct Invocation (if supported): list_apm_applications() or list_open_incidents(priority='CRITICAL', target_account_id=1234567)

Available Tools & Resources

The server provides the following functions accessible via the Model Context Protocol:


Common (features/common.py)

  • Tool: query_nerdgraph

    • Description: Executes an arbitrary NerdGraph query. Use for operations not covered by specific tools.
    • Arguments:
      • nerdgraph_query (str): The GraphQL query string.
      • variables (Optional[Dict]): JSON dictionary of variables for the query.
    • Returns: JSON string of the query result.
  • Tool: run_nrql_query

    • Description: Executes a NRQL query.
    • Arguments:
      • nrql (str): The NRQL query string (e.g., "SELECT count(*) FROM Transaction TIMESERIES").
      • target_account_id (Optional[int]): Account ID to query (uses default from env if omitted).
    • Returns: JSON string of the NRQL result.
  • Resource: get_account_details

    • Description: Provides basic details (ID, name) for the configured New Relic account.
    • URI: newrelic://account_details
    • Returns: JSON string containing account details ({"data": {"id": ..., "name": ...}}) or an error.

Entities (features/entities.py)

  • Tool: search_entities

    • Description: Searches for New Relic entities based on criteria.
    • Arguments:
      • name (Optional[str]): Filter by name (fuzzy match).
      • entity_type (Optional[str]): Filter by type (e.g., 'APPLICATION', 'HOST').
      • domain (Optional[str]): Filter by domain (e.g., 'APM', 'INFRA').
      • tags (Optional[List[Dict]]): Filter by tags (e.g., [{"key": "env", "value": "prod"}]).
      • target_account_id (Optional[int]): Explicit account ID to search within.
      • limit (int): Max results (default 50).
    • Returns: JSON string of search results.
  • Resource: get_entity_details

    • Description: Retrieves detailed information for a specific entity. Includes common fields and type-specific details for APM, Browser, Infra, Synthetics, Dashboards, etc.
    • URI: newrelic://entity/{guid} (replace {guid} with the entity GUID)
    • Returns: JSON string of entity details.
  • Prompt: generate_entity_search_query

    • Description: Generates the query string condition part for the entitySearch NerdGraph field, useful for constructing search queries.
    • Arguments:
      • entity_name (str): Name to search for (exact match used in prompt generation).
      • entity_domain (Optional[str]): Domain to include in the query condition.
      • entity_type (Optional[str]): Type to include in the query condition.
      • target_account_id (Optional[int]): Account ID to include in the query condition.
    • Returns: String representing the search condition (e.g., "accountId = 123 AND name = 'My App' AND domain = 'APM'").

APM (features/apm.py)

  • Tool: list_apm_applications
    • Description: Lists APM applications.
    • Arguments:
      • target_account_id (Optional[int]): Account ID to query (uses default if omitted).
    • Returns: JSON string containing a list of APM applications.

Synthetics (features/synthetics.py)

  • Tool: list_synthetics_monitors

    • Description: Lists Synthetic monitors.
    • Arguments:
      • target_account_id (Optional[int]): Account ID to query (uses default if omitted).
    • Returns: JSON string containing a list of Synthetic monitors.
  • Tool: create_simple_browser_monitor

    • Description: Creates a basic Synthetics simple browser monitor.
    • Arguments:
      • monitor_name (str): Name for the new monitor.
      • url (str): URL to monitor.
      • locations (List[str]): List of public location labels (e.g., ["AWS_US_EAST_1"]).
      • period (str): Check frequency (e.g., "EVERY_15_MINUTES"). Default: "EVERY_15_MINUTES".
      • status (str): Initial status ("ENABLED" or "DISABLED"). Default: "ENABLED".
      • target_account_id (Optional[int]): Account ID for creation (uses default if omitted).
      • tags (Optional[List[Dict]]): Optional tags (e.g., [{"key": "team", "value": "ops"}]).
    • Returns: JSON string with the result, including the new monitor's GUID.
  • Resource: Synthetics monitor details can be retrieved using the get_entity_details resource with the monitor's GUID (newrelic://entity/{monitor_guid}).


Alerts (features/alerts.py)

  • Tool: list_alert_policies

    • Description: Lists alert policies, optionally filtering by name.
    • Arguments:
      • target_account_id (Optional[int]): Account ID to query (uses default if omitted).
      • policy_name_filter (Optional[str]): Filter policies where name contains this string.
    • Returns: JSON string containing a list of alert policies.
  • Tool: list_open_incidents

    • Description: Lists currently open alert incidents.
    • Arguments:
      • target_account_id (Optional[int]): Account ID to query (uses default if omitted).
      • priority (Optional[str]): Filter by priority ('CRITICAL', 'WARNING').
    • Returns: JSON string containing a list of open incidents.
  • Tool: acknowledge_alert_incident

    • Description: Acknowledges an open alert incident.
    • Arguments:
      • incident_id (int): The ID of the incident to acknowledge.
      • target_account_id (Optional[int]): Account ID where the incident occurred (uses default if omitted).
      • message (Optional[str]): Optional message for the acknowledgement.
    • Returns: JSON string with the result of the acknowledgement.

Contributing

Contributions are welcome! Please feel free to submit issues or pull requests.

  1. Fork the repository.
  2. Create a new branch (git checkout -b feature/your-feature).
  3. Make your changes.
  4. Commit your changes (git commit -am 'Add some feature').
  5. Push to the branch (git push origin feature/your-feature).
  6. Open a Pull Request.

License

This project is licensed under the MIT License - see the LICENSE file for details (if a LICENSE file exists).

Recommend Servers
TraeBuild with Free GPT-4.1 & Claude 3.7. Fully MCP-Ready.
Zhipu Web SearchZhipu Web Search MCP Server is a search engine specifically designed for large models. It integrates four search engines, allowing users to flexibly compare and switch between them. Building upon the web crawling and ranking capabilities of traditional search engines, it enhances intent recognition capabilities, returning results more suitable for large model processing (such as webpage titles, URLs, summaries, site names, site icons, etc.). This helps AI applications achieve "dynamic knowledge acquisition" and "precise scenario adaptation" capabilities.
ChatWiseThe second fastest AI chatbot™
Baidu Map百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
CursorThe AI Code Editor
Howtocook Mcp基于Anduin2017 / HowToCook (程序员在家做饭指南)的mcp server,帮你推荐菜谱、规划膳食,解决“今天吃什么“的世纪难题; Based on Anduin2017/HowToCook (Programmer's Guide to Cooking at Home), MCP Server helps you recommend recipes, plan meals, and solve the century old problem of "what to eat today"
EdgeOne Pages MCPAn MCP service designed for deploying HTML content to EdgeOne Pages and obtaining an accessible public URL.
Visual Studio Code - Open Source ("Code - OSS")Visual Studio Code
Amap Maps高德地图官方 MCP Server
BlenderBlenderMCP connects Blender to Claude AI through the Model Context Protocol (MCP), allowing Claude to directly interact with and control Blender. This integration enables prompt assisted 3D modeling, scene creation, and manipulation.
Jina AI MCP ToolsA Model Context Protocol (MCP) server that integrates with Jina AI Search Foundation APIs.
Playwright McpPlaywright MCP server
MiniMax MCPOfficial MiniMax Model Context Protocol (MCP) server that enables interaction with powerful Text to Speech, image generation and video generation APIs.
TimeA Model Context Protocol server that provides time and timezone conversion capabilities. This server enables LLMs to get current time information and perform timezone conversions using IANA timezone names, with automatic system timezone detection.
WindsurfThe new purpose-built IDE to harness magic
Serper MCP ServerA Serper MCP Server
MCP AdvisorMCP Advisor & Installation - Use the right MCP server for your needs
AiimagemultistyleA Model Context Protocol (MCP) server for image generation and manipulation using fal.ai's Stable Diffusion model.
DeepChatYour AI Partner on Desktop
Tavily Mcp
Context7Context7 MCP Server -- Up-to-date code documentation for LLMs and AI code editors