Skip to main content
Glama

snippets_get_snippets

Retrieve all snippets from the Remnawave panel so AI clients can list and review existing snippet configurations used in subscriptions.

Instructions

GET /api/snippets Get snippets Tags: Snippets Controller

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.7/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, yet it discloses nothing about authentication requirements, whether the result is paginated or complete, or ordering. Only the HTTP verb 'GET' weakly implies a read-only, non-destructive operation.

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?

It is short and front-loads the route, but 'Tags: Snippets Controller' is auto-generated noise that adds nothing for an agent, and the useful content is thinner than the token cost of the boilerplate.

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 zero-parameter list endpoint with no output schema and no annotations, the description should at minimum convey what a snippet is, what the response contains, or whether results are filtered. None of that is present, leaving the agent to guess.

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

Parameters4/5

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

The input schema has zero parameters, so there is nothing for the description to clarify and the baseline of 4 applies. No parameter semantics are needed for this tool.

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 a verb and resource ('Get snippets'), which is interpretable, but it is essentially an auto-generated restatement of the tool name plus the raw HTTP route. It gives no indication of scope (all snippets vs. filtered), return shape, or how it differs from siblings like snippets_get_snippet_by_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?

There is no guidance on when to call this versus the other snippet tools (create, update, delete, sync) or when a caller would list snippets at all. Usage must be entirely inferred from the tool name.

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

Install Server

Other Tools