Skip to main content
Glama

node_plugin_sync_shared_list

Push every plugin referencing a shared list to the nodes where it is active, syncing node plugin configurations across your panel.

Instructions

POST /api/node-plugins/shared-lists/actions/sync Sync Shared List to nodes Push every plugin referencing this shared list to the nodes it is active on. Tags: Node Plugins Controller

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyYes
confirmNoПодтверждение выполнения не-GET операции. Без confirm:true возвращается превью запроса (метод, URL, тело) и запрос не отправляется (см. MCP_CONFIRM).

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.8/5.0
Behavior3/5

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

With no annotations, the description carries the full burden; it does disclose the operation's effect (every referencing plugin is pushed to the nodes where the list is active), which is real behavioral context beyond the name. However, it omits permissions required, whether the operation is idempotent/reversible, and any failure behavior on unreachable nodes.

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

Conciseness3/5

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

The core sentence is efficient and front-loaded, but the leading HTTP method/path and trailing 'Tags: Node Plugins Controller' are generator boilerplate that consume space without helping selection or invocation.

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 non-GET mutation with no annotations, no output schema, and a nested body object, the description is thin: it does not state that confirmation is required for execution, what permission scope is needed, or what the caller gets back. It covers only the surface effect of the call.

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 coverage is only 50%: the `confirm` parameter is well documented in the schema (preview vs. execute), but `body.name` has constraints and no description, and the description adds nothing about what the name must reference (an existing shared list) or its expected form. It neither compensates for the gap nor enriches the documented parameter.

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?

States a specific verb and resource ('Sync Shared List to nodes') and clarifies scope: it pushes every plugin referencing the shared list to the nodes it is active on. It is distinguishable from node_plugin_sync_node_plugin by operating on a shared list rather than a single plugin, though it never names that sibling explicitly.

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 when-to-use guidance, no prerequisites, and no mention of the alternatives (node_plugin_sync_node_plugin, node_plugin_update_shared_list) or when re-syncing is appropriate versus merely updating the list. The agent must infer usage entirely.

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