Skip to main content
Glama
Decian-Inc

connectsecure-mcp

by Decian-Inc

patch_w_company_event_set

Update an event set in ConnectSecure by providing route IDs, filters, pagination, headers, and a request payload in a PATCH call.

Instructions

Update event set Calls PATCH /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

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 carries the full burden of behavioral disclosure. It only says 'Update event set' and repeats the HTTP method and parameter placement. It does not disclose whether the update is partial or full replacement, whether it requires special permissions, whether it is reversible, or what happens to unspecified fields. For a mutation 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.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence and reasonably compact, but it is somewhat repetitive: 'Update event set' and 'PATCH /w/company/event_set' convey the same information. The parameter-placement guidance is front-loaded and useful, but the sentence structure is a run-on that mixes the purpose with HTTP mechanics. It earns a middle score for being short but not optimally structured.

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, no parameter documentation, and a generic schema, the description is far from complete. It does not explain the event set resource, the update semantics, required identifiers, or the response format. The output schema exists, so return values are covered, but the input contract is almost entirely unspecified. An agent would struggle to construct a correct request beyond knowing where to place parameters.

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

Parameters2/5

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

Schema description coverage is 0%, and the schema parameters (body, query, headers, path_params) are generic containers with no property definitions. The description adds only that route IDs go in path_params, filters/pagination in query, headers in headers, and payload in body. This is useful routing information, but it does not explain what fields the body should contain, what filters are supported, or what route IDs are required. The description partially compensates for the empty schema but leaves the actual semantics undocumented.

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

Purpose3/5

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

The description states the verb 'Update' and the resource 'event set', and includes the HTTP method and path. However, it does not explain what an 'event set' is or what fields/behavior the update affects, and it does not distinguish this from the sibling patch tools (e.g., patch_w_company_companies, patch_w_company_credentials) beyond the resource name. The resource name is clear enough to identify the target, but the purpose is thin.

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 on when to use this tool versus alternatives. It does not mention that this is the PATCH counterpart to post_w_company_event_set or that get_r_company_event_set is for reading. There is no context about prerequisites, idempotency, or when a partial update is appropriate. The agent must infer usage from the resource name and HTTP verb.

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