Skip to main content
Glama
Decian-Inc

connectsecure-mcp

by Decian-Inc

post_w_company_event_set

Creates an event set for a company by posting to the event_set endpoint. Use route IDs, filters, and a request payload to specify the set.

Instructions

Create event set Calls POST /w/company/event_set. 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?

No annotations are present, so the description carries the full behavioral burden. It adds the HTTP method and where inputs belong, but omits side effects beyond creation, auth requirements, idempotency, duplicate handling, or response behavior. 'Create' and 'POST' imply mutation, but little else is disclosed.

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 two short sentences with no filler, and the endpoint plus input placement are front-loaded. The first sentence has minor grammar awkwardness, but overall it is compact and scannable.

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 tool with no annotations and a generic schema, the description tells an agent where to put values but not what values are needed: which route IDs, which query filters, which headers, or the expected body structure. Even with an output schema present, it is not complete enough to invoke reliably without external API 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?

Schema coverage is 0% and the schema is highly permissive, but the description compensates by assigning semantic roles: path_params = route IDs, query = filters/pagination, headers = required headers, body = request payload. It stops short of naming the actual route IDs, query keys, or payload fields, making this only partial compensation.

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 opens with a clear verb and object, 'Create event set', and names the exact endpoint. Since sibling event_set tools are get/patch/delete variants, the creation intent is clear, though it does not explicitly contrast with those siblings.

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 imperative 'Create event set' implies when to use the tool, but the description gives no context about alternatives such as get_r_company_event_set, patch, or delete. It offers no exclusions or when-not guidance, so usage is only implied.

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