Skip to main content
Glama
Decian-Inc

connectsecure-mcp

by Decian-Inc

post_w_company_application_baseline_rules

Create application baseline rules for a company. Provide route IDs, query filters, pagination, headers, and payload to define the baseline rule.

Instructions

Create application baseline rule Calls POST /w/company/application_baseline_rules. Provide route IDs in path_params, filters and pagination in query, and any required request headers in headers. Provide the request payload in body.

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.1/5.0
Behavior2/5

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

With no annotations present, the description carries the full burden of behavioral disclosure, but it only says 'Create' and maps HTTP parameters. It does not mention side effects, required permissions, validation behavior, idempotency, or what happens on conflict. This is minimal for a mutating POST operation.

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 mostly scannable, with the core action stated first. The only minor waste is 'Calls `POST /w/company/application_baseline_rules`', which duplicates the tool name and endpoint already visible in the tool name, but the rest of the sentence is informative and compact.

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?

Although an output schema exists, the description still lacks essential context for a POST operation: required payload fields, required headers, route ID specifics, error/conflict behavior, and permission requirements. Given the generic schema and absent annotations, the definition is too thin for an agent to invoke this tool reliably without external knowledge.

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 is generic with 0% description coverage, so the description must compensate. It does helpfully map route IDs to `path_params`, filters and pagination to `query`, headers to `headers`, and the payload to `body`. However, it provides no actual parameter names, required fields, or formats, so it only partially compensates for the schema's absence of detail.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The first phrase, 'Create application baseline rule,' states a specific verb and resource, and the explicit endpoint `POST /w/company/application_baseline_rules` disambiguates it from the many sibling GET/PATCH/DELETE tools on the same resource. This is not a tautology; it identifies the operation and the target clearly.

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 gives no guidance about when to choose this tool over alternatives such as `patch_w_company_application_baseline_rules` or `get_r_company_application_baseline_rules`. It does not state prerequisites, exclusions, or conditions under which creation would be appropriate.

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