Skip to main content
Glama

internal_squad_get_internal_squads

Retrieve all internal squads from the Remnawave panel API to review squad configurations and manage internal grouping.

Instructions

GET /api/internal-squads Get all internal squads Tags: Internal Squads Controller

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

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?

No annotations are provided, so the description carries the full behavioral burden. It provides only the raw HTTP route and tag; it says nothing about pagination, ordering, permissions, or return format. For a listing endpoint with zero structured behavioral hints, this is thin.

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?

It is short and front-loaded with the route, but 'Tags: Internal Squads Controller' is documentation metadata rather than useful instruction, and the key information ('Get all internal squads') largely restates the route. Three terse lines with some filler is merely adequate.

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 zero-parameter list endpoint with no output schema and no annotations, the description should at least state that it returns the full collection and whether any filtering exists. Instead it stops at the route and a controller tag, leaving important context for a multi-sibling domain unaddressed.

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

Parameters4/5

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

The tool takes no parameters and schema coverage is 100%, so there is nothing for the description to explain. Baseline 4 applies because no parameter semantics are required.

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

Purpose3/5

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

The description states a verb (Get) and resource (internal squads) via the raw HTTP route 'GET /api/internal-squads' and the line 'Get all internal squads'. However, it does not distinguish this from siblings such as internal_squad_get_internal_squad_by_uuid (singular lookup) or internal_squad_get_internal_squad_usage; the agent must infer that 'all' means list-everything. It's clear but lacks sibling differentiation.

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 or when-not-to-use guidance. The word 'all' implies a listing operation but the description never tells the agent to prefer this over internal_squad_get_internal_squad_by_uuid when a UUID is known, nor does it mention alternatives like internal_squad_get_tags.

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