Skip to main content
Glama
adm-alvin-decruz

New Relic MCP Server

create_notification_channel

Create a notification channel linked to a destination to receive New Relic alerts via email, webhook, Slack, PagerDuty, or ServiceNow.

Instructions

Create a notification channel linked to a destination

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesName of the notification channel
typeYesChannel type (EMAIL, WEBHOOK, SLACK, etc.)
productNoProduct type (IINT for Applied Intelligence)IINT
propertiesNoChannel-specific properties
destination_idYesID of the destination to link to

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.2/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Since no annotations are provided, the description carries full behavioral disclosure burden. It only restates the core create action without explaining side effects, destination existence validation, idempotency, error behavior, or any requirements around the 'properties' field. It adds no behavioral context beyond what the tool name and schema already convey.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence with no filler words, and the core action is front-loaded. It is maximally concise while still conveying the essential purpose. The absence of excess verbiage makes it easy to parse quickly.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no output schema and no annotations, the description is too thin to support correct invocation in all cases. It does not explain how the 'properties' object varies by channel type, whether the destination must pre-exist, or what the response will be. An agent would have to infer significant context from parameter names alone.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, with every parameter already having a meaningful description. The tool description adds no new parameter-level information; 'linked to a destination' merely echoes the destination_id schema description. With complete schema coverage, the baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb ('Create'), a clear resource ('notification channel'), and a relationship ('linked to a destination'). This accurately distinguishes it from the sibling create_notification_destination, which creates the destination itself, and from list_notification_channels, which reads channels.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is given on when to use this tool versus create_notification_destination or other notification tools. It does not mention prerequisites such as the need for an existing destination, nor does it describe the typical workflow ordering. The single sentence provides no conditions or alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.