Skip to main content
Glama

config_profile_get_all_inbounds

Retrieve every inbound across all config profiles in the Remnawave panel. Use it to list all inbounds at once for auditing or configuration review.

Instructions

GET /api/config-profiles/inbounds Get all inbounds from all config profiles Tags: Config Profiles Controller

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.2/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, and it discloses essentially nothing: no pagination behavior, no auth/permission requirements, no indication of how results are grouped by profile, and no volume expectations for an endpoint that fans out across all profiles. The only behavioral hint is the 'GET' verb embedded in the raw route string.

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 short and front-loaded, which is good, but the raw 'GET /api/config-profiles/inbounds' line restates the tool name as a route, and the 'Tags: Config Profiles Controller' line is generator boilerplate that adds no decision-relevant information to an agent.

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

Completeness3/5

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

For a zero-parameter read endpoint this is minimally adequate, but with no output schema and no annotations the description should at least describe the shape or grouping of the returned inbounds (e.g., whether they are flat or keyed by config profile). It is complete enough to call, not complete enough to predict the response.

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 zero parameters, so there is no parameter semantics to document and the baseline of 4 applies. Nothing in the description is needed to call it correctly with respect to arguments.

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 gives a clear verb+resource ('Get all inbounds') and a scope qualifier ('from all config profiles') that implicitly separates it from the per-profile sibling config_profile_get_inbounds_by_profile_uuid. It does not name that sibling, so the differentiation is inferred rather than explicit.

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

Usage Guidelines3/5

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

The 'from all config profiles' scope implies this is the aggregate variant to use when you want every profile's inbounds rather than one profile's, which is usable guidance. However, it never names the alternative tool or states when NOT to use this one, leaving the routing to inference.

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