Skip to main content
Glama
adm-alvin-decruz

New Relic MCP Server

create_workflow

Create a workflow that connects alert policies to notification channels, using optional filters to control which alerts trigger notifications.

Instructions

Create a workflow to connect alert policies to notification channels

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesName of the workflow
enabledNoWhether the workflow is enabled
channel_idsYesList of notification channel IDs to send alerts to
filter_nameNoName for the issues filter (optional)Filter-name
filter_predicatesNoFilter predicates to determine which alerts trigger this workflow

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It conveys only that this is a mutating 'Create' operation and does not disclose prerequisites (existing notification channels), side effects (e.g., a default filter named 'Filter-name' being applied), idempotency, or what happens if the referenced channels do not exist.

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

Conciseness4/5

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

The description is a single front-loaded sentence with zero filler; the verb and resource appear immediately. It is efficient and scannable, though it is terse enough that it sacrifices useful detail for brevity.

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?

For a five-parameter create operation with no output schema, the description is under-specified: it never mentions the filtering mechanism that is central to how the workflow selects alerts, nor prerequisites like needing channels beforehand. An agent cannot infer the core routing concept or what the operation returns from this description 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%, so the input schema already documents all five parameters individually, meeting the high-coverage baseline of 3. The description adds no parameter-level meaning beyond the schema, and the nested filter_predicates structure is left entirely to the schema.

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

Purpose4/5

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

The description states a specific verb and resource ('Create a workflow') plus a purpose ('connect alert policies to notification channels'), which positions it clearly against siblings like create_alert_policy, create_notification_channel, and create_muting_rule. It is slightly imprecise, though: the schema shows routing is driven by filter_predicates/filter_name, and alert policies are not actually a parameter of this tool, so the description's implied mechanism is approximate rather than exact.

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?

There is no when-to-use guidance, no prerequisites, and no mention of alternatives. Among siblings that include delete_workflow, list_workflows, and several other create_* tools, the description gives no hint about ordering (e.g., channels should exist first) or when this tool is the right choice versus creating a policy or channel.

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