Skip to main content
Glama

List snippets

checkly_list_snippets
Read-only

List all reusable code snippets. Public API: GET /v1/snippets.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo1-based page number.
limitNoPage size.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A3.8/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, so the description doesn't need to restate safety. It adds the endpoint but does not mention any side effects, rate limits, or result format. For a simple read-only list, this is acceptable but not informative beyond structured fields.

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?

Two sentences, no filler. The first sentence states the purpose, the second adds API context. Every word is informative.

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

Completeness4/5

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

For a simple list operation with no output schema, low parameter count, and supportive annotations, the description is sufficient. It could optionally explain the return value, but 'list all' implies returning a list of snippets.

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 100%, so baseline is 3. The description does not add any parameter-level meaning beyond what the schema already provides (page and limit with descriptions). No additional context or constraints.

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

Purpose5/5

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

The description clearly states the verb 'list' and resource 'reusable code snippets', distinguishing it from sibling tools that list other entities. It also provides the specific API endpoint.

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?

There is no explicit guidance on when to use this tool versus alternatives, nor exclusions. Usage is implied by the resource name, but the description lacks contextual cues like prerequisites or comparison to other list tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.7/5.0
Disambiguation4/5

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.

Naming Consistency5/5

All tools follow a consistent `checkly_verb_noun` pattern, using `get`, `list`, and `create` appropriately. No mixing of styles.

Tool Count4/5

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.

Completeness2/5

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.