Skip to main content
Glama
Decian-Inc

connectsecure-mcp

by Decian-Inc

post_report_builder_cover_page

Creates a report cover page by submitting route IDs, filters, pagination, and headers to the Report Builder endpoint.

Instructions

Create Report Calls POST /report_builder/cover_page. 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.2/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It only says 'Create Report Calls', which is a nearly tautological restatement of the endpoint and implies a mutating POST operation, but it does not disclose side effects, required permissions, rate limits, or the nature of the response. This is a significant gap for a write operation.

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 sentences with zero filler. It front-loads the endpoint and method, then efficiently distributes parameter responsibilities. Every sentence adds actionable information.

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?

For a POST operation with four generic object parameters and no schema detail, this description is inadequate. It does not explain what a cover page is, what data must be supplied, what the response contains (despite an output schema existing), or any preconditions. An agent would likely struggle to call this tool correctly without external documentation.

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?

With 0% schema description coverage, the description compensates somewhat by assigning functional roles to each parameter (path_params for route IDs, query for filters/pagination, headers for request headers, body for payload). However, it remains generic and does not provide concrete examples, formats, or required fields, so the added value is moderate.

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 states a clear action ('Create Report') targeting a specific endpoint (POST /report_builder/cover_page). It distinguishes itself from the GET variant by the verb 'Create' and the HTTP method, though it does not explicitly clarify what a 'cover page' is or contrast it with the sibling GET tool.

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 gives concrete guidance on where to place parameters (route IDs in path_params, filters and pagination in query, headers, and payload in body), which helps an agent structure the call. However, it does not indicate when to use this POST tool versus the GET equivalent or other report builder tools, leaving the selection condition implicit.

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