Skip to main content
Glama
Decian-Inc

connectsecure-mcp

by Decian-Inc

get_r_company_custom_domains_id

Retrieve a specific custom domain for a company using its ID. Pass the ID in path parameters and use query parameters to filter or paginate results.

Instructions

Retrieve custom domain Calls GET /r/company/custom_domains/{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

B3.1/5.0
Behavior2/5

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

With no annotations provided, the description must carry the full behavioral disclosure burden. It does state the HTTP method and that this is a retrieve operation, but it omits authentication needs, required ID semantics, error behavior, and response characteristics. This is minimal disclosure for a GET endpoint.

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 a single compact sentence that front-loads the endpoint and then maps argument groups to their request locations. Every clause adds value and there is no filler or repetition of schema defaults.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple GET wrapper with an output schema, the routing information is adequate to attempt a call, but the description lacks usage context such as when to use the singular vs list endpoint, authentication expectations, and whether body should be omitted. The generic schema and absent annotations leave notable 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 compensates somewhat by explaining that path_params carry route IDs, query carries filters and pagination, and headers carry required request headers. However, it does not name the specific ID key, query parameter names, or header names, and the body parameter is left unexplained.

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 names the resource ('custom domain') and the exact REST endpoint with an {id} placeholder, paired with the verb 'Retrieve.' This distinguishes it from the sibling list endpoint get_r_company_custom_domains, though it could be more explicit that it fetches a single resource by ID.

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 get_r_company_custom_domains or post_w_company_custom_domain. It only describes how to construct the request, not the conditions that select this tool or exclude alternatives.

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