Skip to main content
Glama
Decian-Inc

connectsecure-mcp

by Decian-Inc

get_r_asset_bios_info

Retrieve BIOS details for assets using route IDs, with support for filters, pagination, and custom headers.

Instructions

Retrieve bios info Calls GET /r/asset/bios_info. 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?

With no annotations, the description carries full burden of behavioral disclosure. It only says 'Retrieve', which hints at read-only, but doesn't mention permissions, rate limits, side effects, or pagination behavior. It also doesn't clarify whether the query's pagination params are required or optional.

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 brief and to the point, with no fluff. The endpoint and parameter placement are front-loaded in two sentences. It loses a point because the second sentence is a run-on that crams multiple instructions together, but overall it's efficient.

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?

While an output schema exists (which covers return values), the description lacks essential context: no explanation of what bios info actually represents, no prerequisites, no error conditions, and no hints about required vs optional parameters beyond generic categories. For a GET endpoint with zero annotations and a generic schema, this is thin.

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?

The schema is completely generic (all objects with no properties, 0% coverage). The description adds meaning by mapping `path_params` to route IDs, `query` to filters/pagination, and `headers` to required request headers. However, it doesn't specify exact parameter names or formats, leaving significant ambiguity.

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 action ('Retrieve bios info') and provides the concrete HTTP endpoint (`GET /r/asset/bios_info`), which distinguishes it from sibling tools like `get_r_asset_bios_info_id`. The verb and resource are specific, though it doesn't elaborate on what bios info contains.

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 only tells how to construct the request (path_params, query, headers) but gives no guidance on when to use this tool versus alternatives, such as when to prefer this over `get_r_asset_bios_info_id`. There are no conditions, exclusions, or context for choosing this endpoint.

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