Skip to main content
Glama
Decian-Inc

connectsecure-mcp

by Decian-Inc

get_r_company_event_set

Retrieve a company's event set by providing route IDs and optional filters. Use it to fetch filtered, paginated event data for vulnerability management and reporting.

Instructions

Retrieve event set Calls GET /r/company/event_set. 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.9/5.0
Behavior2/5

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

With no annotations provided, the description must disclose behavioral traits. It only states it is a GET (read) operation but does not mention required authentication, potential side effects, rate limits, or return behavior beyond the endpoint. The mention of 'required request headers' hints at auth but is not explicit.

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 a single sentence with no wasted words, and the core action is front-loaded. The phrasing 'Retrieve event set Calls GET /r/company/event_set' is slightly awkward but still concise and direct.

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?

Given the tool has no annotations, 0% schema coverage, and a large sibling set, the description is insufficient. It omits critical context such as what a 'route ID' is, what filters and pagination parameters are supported, expected output shape, and when to choose this over the ID-specific endpoint. The presence of an output schema mitigates return documentation but does not cover the other 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 coverage is 0%, so the description must compensate. It explains the roles of `path_params` (route IDs), `query` (filters and pagination), and `headers` (required headers), providing some semantic guidance. However, it does not specify which filters, how IDs are structured, or what the body parameter is for, leaving gaps.

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 the action 'Retrieve event set' and specifies the exact HTTP endpoint `GET /r/company/event_set`, making the resource and operation clear. However, it does not explicitly differentiate from the sibling `get_r_company_event_set_id` which likely retrieves a single event set, so it lacks sibling distinction.

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 such as the ID-specific variant or other event set tools. It only gives parameter placement advice, not usage context or exclusions, leaving the agent without criteria for selection.

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