Skip to main content
Glama

config_profile_get_inbounds_by_profile_uuid

Fetch all inbounds for a specific config profile using its UUID. Use it to list or inspect the inbound connections tied to that profile.

Instructions

GET /api/config-profiles/{uuid}/inbounds Get inbounds by profile uuid Tags: Config Profiles Controller

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
uuidYesUUID of the config profile

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.8/5.0
Behavior2/5

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

With no annotations present, the description carries the full behavioral burden, yet it only reveals that this is a GET (implying a safe read). It says nothing about authentication/scope requirements, whether results are paginated or cached, or what the payload contains.

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 operation is stated in one short line, which is efficient, but the trailing 'Tags: Config Profiles Controller' is backend grouping metadata that adds no decision value for an agent. Front-loading is fine; one of the three lines does not earn its place.

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?

With no annotations, no output schema, and no clarification of what an 'inbound' is in this domain, the definition is thin for an agent that must decide whether to call it and how to interpret results. Only the required input is reasonably covered.

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

Parameters3/5

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

Schema description coverage is 100% and the single uuid parameter is fully documented in the schema with a format and pattern. The description adds only the phrase 'profile uuid', which matches the schema and contributes no extra meaning, so the baseline 3 applies.

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 clear verb+resource ('Get inbounds') scoped by an identifier ('by profile uuid'), and the raw route GET /api/config-profiles/{uuid}/inbounds reinforces it. It does not, however, distinguish this from sibling config_profile_get_all_inbounds or explain how the two differ.

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 guidance and no mention of alternatives such as config_profile_get_all_inbounds or config_profile_get_computed_config_profile_by_uuid. The agent must infer the selection criteria from the name alone.

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