Skip to main content
Glama
Decian-Inc

connectsecure-mcp

by Decian-Inc

get_r_company_app_baseline_plan_assets_id

Retrieve a specific app baseline plan asset by ID to view its details, using query filters and pagination for targeted results.

Instructions

Retrieve app baseline plan asset Calls GET /r/company/app_baseline_plan_assets/{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.5/5.0
Behavior3/5

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

There are no annotations, so the description carries the burden of behavioral disclosure. It does disclose that this is a GET call and uses "Retrieve", implying a read-only operation, and it mentions required request headers. It does not discuss auth specifics, not-found/error behavior, or pagination defaults, but for a simple GET this is a minimal but acceptable level of transparency.

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 only two sentences and every sentence earns its place: the first identifies the operation and endpoint, the second gives parameter routing guidance. There is no filler or repetition, and the key instruction is front-loaded.

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?

With an output schema present, return-value documentation is not needed. The description covers the main invocation path (path, query, headers), but leaves the `body` parameter unexplained, does not specify how the single id key should be named in path_params, and does not clarify how this endpoint relates to the list/company/global baseline-plan siblings. It is minimally workable but has clear gaps.

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% and the parameters are generic open maps, so the description is the only source of semantics. It helpfully maps path_params to route IDs, query to filters/pagination, and headers to request headers. However, it never explains the `body` parameter, says "route IDs" plural for a single `{id}`, and gives no concrete key names for query or path parameters.

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 starts with a clear verb and resource: "Retrieve app baseline plan asset", and also gives the exact endpoint `GET /r/company/app_baseline_plan_assets/{id}`. The `{id}` suffix makes it reasonably distinguishable from the collection sibling `get_r_company_app_baseline_plan_assets`, though it does not name that sibling explicitly.

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 tells the agent where to put inputs: route IDs in path_params, filters/pagination in query, and headers in headers. However, it never states when to prefer this tool over the list/company/global variants or what conditions select it; the intended use is only implied by the `{id}` path parameter.

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