Skip to main content
Glama
Decian-Inc

connectsecure-mcp

by Decian-Inc

get_r_asset_firewall_users

Fetch firewall users for specific asset routes by providing route IDs, query filters, pagination, and headers to retrieve targeted security data.

Instructions

Retrieve firewall users Calls GET /r/asset/firewall_users. Provide route IDs in path_params, filters and pagination in query, and any required request headers in headers.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyNo
queryNo
headersNo
path_paramsNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are present, so the description carries the full burden. It identifies this as a GET request, which implies read-only behavior, but it does not explicitly state that there are no side effects, does not mention authentication or auth requirements, and gives no information about permissions or rate limits. The generic 'any required request headers' hint is too vague to be actionable.

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 two sentences and remains front-loaded with the core action and endpoint. The second sentence packs useful routing guidance without wasted statements. It stays under the size ceiling and every sentence earns 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?

The tool is a REST list endpoint with four loosely-typed generic containers and no annotation context. The description fails to mention the body parameter, leaves pagination parameters unspecified, and does not explain what firewall users are or how this differs from get_r_asset_firewall_users_id. The output schema reduces the return-format concern, but the input-side gaps are still significant for an agent attempting to call this correctly.

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?

With 0% schema description coverage, the description adds some compensatory value by telling the agent that path_params holds route IDs, query holds filters/pagination, and headers holds request-related values. However, it does not name any actual query parameters, define the pagination contract, or address the 'body' field at all, so the compensation is only partial.

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 ('Retrieve') and resource ('firewall users'), and it names the exact endpoint path. This is sufficient for an agent to recognize what resource the tool operates on, and the collection-level path distinguishes it from the *_id sibling, though that sibling is not explicitly referenced.

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?

The description provides no guidance on when to use this tool versus alternatives such as get_r_asset_firewall_users_id or other firewall-related list endpoints. It only explains parameter placement (route IDs in path_params, filters and pagination in query), not the conditions that should trigger selection of this tool over a sibling.

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