Skip to main content
Glama
Decian-Inc

connectsecure-mcp

by Decian-Inc

get_r_asset_asset_view_id

Retrieve a specific asset view by ID. Provide the asset view ID in path parameters, with optional filters, pagination, and headers, to get detailed asset data for vulnerability management.

Instructions

Retrieve asset view Calls GET /r/asset/asset_view/{id}. 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

A3.6/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral burden. It does disclose the HTTP method (GET) and the fact that filters/pagination are sent in query, signaling a read-style operation. It does not mention authentication requirements, error behavior, or pagination response semantics.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two short sentences; the endpoint is front-loaded, and the parameter placement guidance follows immediately. No filler or repetition wastes tokens.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The exact endpoint and top-level container roles provide enough to make a first call, and the output schema covers returns. But the description omits required header specifics, concrete filter/pagination parameter names, and explicit differentiation from the collection sibling. For a generic REST wrapper, this is adequate but not complete.

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

Parameters4/5

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

Schema coverage is 0%, so the description is the only source of parameter meaning. It maps the generic `path_params`, `query`, and `headers` containers to concrete roles (IDs, filters/pagination, headers). It does not enumerate specific query parameter names nor the `body` container, leaving some 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 names a specific verb ('Retrieve asset view') and the exact REST call `GET /r/asset/asset_view/{id}`. The `_id` suffix and `{id}` path variable imply this is the by-ID variant of `get_r_asset_asset_view`, though it does not explicitly name that sibling.

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?

It tells the agent where to place route IDs, query filters/pagination, and headers, which is useful invocation guidance. However, it never states when to choose this tool over the sibling `get_r_asset_asset_view` or any other list endpoint. The intended use (fetching by ID) is only implied.

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