Skip to main content
Glama
Decian-Inc

connectsecure-mcp

by Decian-Inc

get_r_integration_integration_rules_id

Fetch integration rule details by ID from ConnectSecure API. Use path parameters to specify the rule, with query filters and headers to customize the response.

Instructions

Retrieve integration rule Calls GET /r/integration/integration_rules/{id}. 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.8/5.0
Behavior2/5

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

No annotations are provided, so the description alone must disclose behavior. It only says 'Retrieve' and gives the HTTP path, which implies a safe read but does not mention any requirements such as authentication, error/status codes, rate limits, or what unsupported filters may do. It also doesn't explain what an 'integration rule' is or what state changes (none) or side effects might occur. Minimal disclosure beyond the fact that it is a GET.

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?

One sentence, no filler, and the essential action is front-loaded. The phrasing is compact but slightly awkward: 'filters and pagination in query' is okay, though it repeats 'filters' and uses 'query' twice across two clauses. It earns its place overall, but the sentence could be structured more clearly, and it lacks even a second sentence for context. Appropriate length, but not polished.

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 GET-by-ID tool with an open query object and no annotations, the description leaves important gaps: it does not specify the exact key for the route ID in path_params (e.g., ID), what filters/pagination look like, or the shape/meaning of the response (though an output schema exists). An agent could not reliably construct a valid request from this description alone, especially when needing to know that the 'id' path parameter is expected and how to name it.

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 must carry the parameter meaning. It usefully maps path_params to 'route IDs', query to 'filters and pagination', and headers to 'required request headers', which clarifies the otherwise generic schema objects. However, it does not name which keys belong in each object (e.g., what filter keys or pagination keys are valid), nor does it mention the 'body' parameter at all. Partial compensation, but key details are still missing.

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?

Description states a concrete verb and resource: 'Retrieve integration rule' and the exact endpoint GET /r/integration/integration_rules/{id}, clearly indicating a singular-resource retrieval by ID. It separates itself from sibling list/all operation get_r_integration_integration_rules and from the post/patch/delete siblings. Slight deduction because it does not explicitly point out the distinction, but it is implied by the endpoint and name.

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?

No guidance is given on when to use this tool versus the sibling list endpoint or other operations. It tells the agent how to fill parameters (path_params, query, headers) but never states 'use this to fetch one specific integration rule; for all rules use get_r_integration_integration_rules.' This leaves selection inference entirely to the name and URL, so the description adds nothing on tool-choice context.

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