Skip to main content
Glama
Decian-Inc

connectsecure-mcp

by Decian-Inc

get_r_asset_asset_installed_drivers

Fetch installed drivers for an asset by providing route IDs, filters, pagination, and headers.

Instructions

Retrieve asset installed drivers Calls GET /r/asset/asset_installed_drivers. 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

B3.1/5.0
Behavior3/5

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

The description openly states that it calls `GET /r/asset/asset_installed_drivers` and mentions pagination, which signals an indirect non-destructive, read-only operation. However, with no annotations and no mention of authentication, required headers, or any edge-case side effects, behavioral disclosure is partial and leaves gaps.

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 compact and front-loaded: the first phrase states the action, and the second provides the parameter-to-context mapping. Both sentences contribute value, with no fluff, although the inclusion of the raw endpoint string is somewhat redundant with the tool name.

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 description is too thin for a GET collection tool with a sibling that handles individual IDs. It is ambiguous what 'route IDs' actually mean (asset ID? driver ID?) and fails to explicitly state whether this returns for all assets or one asset. Given no annotations and no schema descriptions, the agent must guess the path parameter requirements and the singularity/plurality of the returned data.

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 0%, so the description is the only place explaining the container parameters. It does add meaning by mapping path_params to 'route IDs', query to 'filters and pagination', and headers to 'required request headers', which is beyond the schema. Yet it does not enumerate the expected fields or explain the `body` parameter, so the added semantics are shallow.

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 the specific action ('Retrieve asset installed drivers') and identifies the endpoint, giving a clear, specific verb and resource. However, it does not differentiate from the sibling tool `get_r_asset_asset_installed_drivers_id`, so an agent must infer which one returns a collection versus a single record.

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 gives minimal usage guidance by saying to provide route IDs in path_params and filters/pagination in query, but it does not offer any when/when-not instructions or point to alternatives. It is unclear whether the agent should choose this tool over the singular `_id` variant or other asset retrieval tools, so no meaningful decision support is provided.

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