Skip to main content
Glama

net_configure_rpc

Configure network settings for a Blueprint Custom Event RPC, including reliability and server/client type.

Instructions

Configure network flags on an existing Blueprint Custom Event RPC.

KB: see knowledge_base/03_GAMEPLAY_FRAMEWORK.md#overview Example: net_configure_rpc(blueprint_name="/Game/MCP_Test/BP_Example", event_name="ExampleName")

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
saveNo
compileNo
reliableNo
rpc_typeNoserver
event_nameYes
blueprint_nameYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.7/5.0
Behavior2/5

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

Annotations are absent, so the description carries the full burden. It only says 'Configure network flags' without disclosing side effects such as whether the blueprint is saved/compiled, whether existing RPC settings are overwritten, or whether this operation mutates the authored graph. The schema defaults hint at save/compile behavior, but the description itself adds little.

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 compact and front-loaded with the core purpose, followed by a KB reference and a concrete example. There is no fluff, though the brevity comes at the cost of parameter and behavior detail.

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 mutating tool with six parameters, no annotations, no schema-level descriptions, and many closely related siblings, the description is too thin. It provides an example but omits parameter semantics, side effects, and when to prefer this over alternative network configuration tools.

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

Parameters2/5

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

Schema description coverage is 0%, and the description only illustrates blueprint_name and event_name via an example. The remaining parameters (save, compile, reliable, rpc_type) are left completely unexplained, so the description does not adequately compensate for the schema's lack of documentation.

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 action ('Configure network flags') and target ('existing Blueprint Custom Event RPC'), and 'existing' usefully distinguishes it from creation-oriented RPC tools. However, it does not differentiate from similar siblings like net_set_function_rpc, and 'network flags' is somewhat vague about which flags are involved.

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 explicit guidance on when to use this tool versus alternatives such as net_create_rpc_event or net_set_function_rpc. The KB pointer and example are useful but do not communicate usage context, prerequisites, or exclusions.

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

Deploy Server

Other Tools