Get a check group
checkly_get_check_groupRetrieve a single check group by id. Public API: GET /v1/check-groups/{id}.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The check group id. |
checkly_get_check_groupRetrieve a single check group by id. Public API: GET /v1/check-groups/{id}.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The check group id. |
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already mark readOnlyHint=true, so description adds value by disclosing the HTTP method and endpoint. No contradictions or missing behavioral traits.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence with no extraneous text. Efficiently communicates purpose and endpoint.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple retrieval tool with one parameter and no output schema, the description is sufficient. Could optionally mention the return format, but not necessary.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% and the description does not add information beyond the schema's parameter description. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Retrieve a single check group by id,' which is a specific verb-resource combination. It distinguishes from siblings like checkly_list_check_groups that list multiple groups.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies use for fetching one group by id, but does not explicitly state when to avoid or mention alternatives. Context from sibling tools helps, but lacks explicit guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Most tools target distinct resources (checks, groups, results, statuses, etc.). However, `checkly_get_check_alerts` vs `checkly_list_check_alerts` could be confused, though descriptions help clarify per-check vs account-level.
All tools follow a consistent `checkly_verb_noun` pattern, using `get`, `list`, and `create` appropriately. No mixing of styles.
22 tools cover a broad monitoring domain reasonably well, but a few resource types (e.g., dashboards, snippets, runtimes) with only list operations may be underutilized.
The tool set is heavily read-only; only maintenance windows and variables have create operations. Missing create/update/delete for checks, groups, alert channels, and other core resources, limiting agent ability to manage the account.