Skip to main content
Glama
rollecode

seerr-mcp

by rollecode

list_user

Read-onlyIdempotent

Fetch all registered users with configurable pagination and sorting parameters.

Instructions

Get all users.

GET /api/v1/user

Args: take: Query parameter. skip: Query parameter. sort: Query parameter.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
skipNo
sortNo
takeNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

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?

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds only the HTTP endpoint and parameter names, but not pagination behavior, return format, or auth requirements. Marginal value beyond annotations.

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?

The description is concise and front-loaded with the purpose. The Args section is minimal but adds no semantic enrichment beyond naming parameters. It is not verbose, yet it also does not earn its sentences fully.

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 list tool with three optional parameters and an output schema, the core purpose is stated. However, it lacks usage guidance relative to siblings and does not explain how the parameters affect the result, leaving uncertainty about pagination and sorting.

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

Parameters2/5

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

Schema description coverage is 0%, so the schema provides no explanations. The description merely labels take, skip, and sort as query parameters without clarifying that take is a limit, skip is an offset, or sort ordering. It fails to compensate for the missing schema descriptions.

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 'Get all users.' which is a clear verb+resource. It is distinguishable from the singular get_user_by_user_id and other list_* siblings, though it does not explicitly contrast with them.

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 on when to use this over alternatives. It does not mention that it returns all users without filtering, nor does it differentiate from list_media, list_request, or list_issue. Only parameter names are listed.

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