Skip to main content
Glama
Decian-Inc

connectsecure-mcp

by Decian-Inc

get_r_asset_asset_view

Retrieve asset views from ConnectSecure using route IDs, filters, and pagination to access asset details for vulnerability management and reporting.

Instructions

Retrieve asset view Calls GET /r/asset/asset_view. 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.3/5.0
Behavior3/5

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

No annotations are provided, so the description must disclose behavior on its own. It does so by naming the HTTP method `GET`, which clearly signals a read‑only operation, and it implies a listing/paginated behavior through the phrases 'filters and pagination'. However, it does not describe possible limits, default pagination size, or what happens when no route IDs are supplied, limiting transparency beyond the read-only hint.

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 short sentences that get straight to the point. It front-loads the core purpose, then provides the parameter-placement guidance in one compact second sentence. There is little verbosity, and every clause adds information needed to invoke the tool.

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?

Given that there are no annotations, no parameter descriptions in the schema, and the schema only defines open-ended objects, this description needs to explain what an 'asset view' is and what available filters, pagination formats, and required headers are. The description gives only a rough template ('route IDs', 'filters and pagination', 'required headers') without naming concrete route IDs, filter names, or header fields. An agent would need external documentation to safely call this endpoint with the correct parameters.

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 input schema has almost no semantic detail (properties are just open objects), and schema coverage is 0%. The description compensates by assigning meaning to the main parameter groups: `path_params` carry route IDs, `query` carries filters and pagination, and `headers` carries required request headers. It leaves `body` unmentioned and the actual filter/pagination names undefined, so the compensation is 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 clearly states a specific verb ('Retrieve') and resource ('asset view') and names the exact endpoint (`GET /r/asset/asset_view`). It distinguishes the tool from unrelated siblings, though it does little to differentiate it from the very similar `get_r_asset_asset_view_id` tool, so it falls short of the level where the sibling confusion is fully resolved.

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 description provides concrete placement guidance: route IDs go in `path_params`, filters/pagination go in `query`, and any required request headers go in `headers`. This helps an agent know _how_ to call the tool, but it does not explain _when_ to use it over the sibling `get_r_asset_asset_view_id` or other asset-scoped query tools. The usage context is implied rather than explicit.

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