Skip to main content
Glama
Decian-Inc

connectsecure-mcp

by Decian-Inc

get_r_company_application_baseline_rules_id

Fetch a specific application baseline rule by ID to review its configuration and enforce security policies. Use this endpoint to retrieve rule details for audits or troubleshooting.

Instructions

Retrieve application baseline rule Calls GET /r/company/application_baseline_rules/{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

C2.4/5.0
Behavior2/5

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

No annotations are provided, so the description must carry the full burden of behavioral disclosure. The description only states the HTTP method and parameter placement. It does not disclose that this is a read-only operation (although the 'get_' prefix and 'r' in the name hint), nor does it mention any side effects, authentication requirements, rate limits, or response behavior. For a retrieval tool with zero annotation coverage, this is a significant gap.

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 short and uses a single sentence, which is concise. It front-loads the purpose ('Retrieve application baseline rule') and then provides mapping hints for parameters. There is no redundant filler, but the brevity sacrifices necessary detail.

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

Completeness1/5

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

For a parameterized retrieval tool with no annotation coverage and an output schema, the description is grossly incomplete. It does not explain the meaning of the return value, any potential error conditions, or authentication requirements. It also fails to specify which route ID is required, and the schema gives no help. Given the complexity of the API (many sibling tools), the description is insufficient for an agent to call it correctly.

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

Parameters1/5

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

Schema description coverage is 0%, and the schema provides only generic container objects (body, query, headers, path_params) with no property definitions. The description attempts to specify which parameters go where ('route IDs in path_params, filters and pagination in query, and any required request headers in headers'), but it gives no details about the actual route ID format, what filters are available, or what headers are required. The parameter names are not descriptive (e.g., 'path_params' is generic), and the description does not explain how to fill them correctly. This is severely lacking for a tool with 4 undefined 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 clearly states a specific verb ('Retrieve') and resource ('application baseline rule') with an ID path parameter, and it explicitly identifies the HTTP endpoint. While there are sibling tools for this resource (e.g., get_r_company_application_baseline_rules, post_w_company_application_baseline_rules), the description does not explicitly differentiate from them, but the action of retrieving a single rule by ID is implied.

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 provides no guidance on when to use this tool versus alternatives. It does not mention that this is for fetching a specific rule by ID, while the list version (get_r_company_application_baseline_rules) would be for listing all rules. It also lacks any context about required permissions or preconditions. The agent must infer usage from the name and endpoint pattern.

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