Skip to main content
Glama
aadeshrao123

Unreal-MCP

by aadeshrao123

list_niagara_ops

List all valid Niagara operations from the engine registry to obtain correct op names and pin schemas for adding graph nodes.

Instructions

Enumerate all valid UNiagaraNodeOp operations from FNiagaraOpInfo registry.

This is the authoritative source the editor's context menu reads from — use it BEFORE calling add_niagara_graph_node with node_type="Op" so you pass a real op_name (e.g. "Numeric::Mul" vs the invalid "Numeric::Multiply").

Each entry reports: name (for op_name param), friendly_name, category, description, keywords, alternate_name, compact_name, supports_added_inputs, and — when include_pins=True — full input/output pin schema with types and defaults.

Args: filter: Case-insensitive substring, matches name / friendly_name / category / description / keywords / alternate name. E.g. "multiply" finds "Numeric::Mul" via its friendly name. category: Exact category match (e.g. "Math", "Comparison", "Boolean", "Vector", "Quaternion"). Use the all_categories field in a first response to discover valid values. exact_name: Return the single op whose internal Name equals this string (bypasses other filters). include_pins: Include inputs/outputs per op (default True). max_results: Cap on returned entries (default 500).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
filterNo
categoryNo
exact_nameNo
max_resultsNo
include_pinsNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes
Behavior4/5

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

No annotations are provided, so the description fully bears transparency. It details the return fields (name, friendly_name, category, etc.) and explains each parameter's effect, providing clear behavioral insight beyond a simple 'list'.

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 well-structured and front-loaded with purpose, then usage, return fields, and parameter details. Every sentence is useful, though slightly lengthy; no wasted words.

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

Completeness4/5

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

Given the presence of an output schema and detailed parameter descriptions, the description is largely complete. It covers return fields, parameter semantics, and usage context. No mention of error handling or empty results, but acceptable for a listing tool.

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

Parameters5/5

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

Schema description coverage is 0%, but the description compensates excellently with detailed explanations for all 5 parameters: filter (case-insensitive substring matching), category (exact match with examples), exact_name, include_pins, and max_results. Examples add semantic clarity.

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 clearly states it enumerates valid UNiagaraNodeOp operations from the FNiagaraOpInfo registry, explicitly distinguishes it from sibling tools like list_niagara_node_types by noting its use case for add_niagara_graph_node with node_type='Op'.

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

Usage Guidelines4/5

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

The description explicitly tells when to use this tool: before calling add_niagara_graph_node with node_type='Op', to get valid op names. It does not explicitly say when not to use or list alternatives, but the context is clear among many Niagara sibling tools.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/aadeshrao123/Unreal-MCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server