Skip to main content
Glama
Tobeworks

invoiceshelf-mcp

by Tobeworks

get_users

Retrieve a paginated list of users from an InvoiceShelf instance to review account details. Use page and limit parameters to control the results returned.

Instructions

List users on the InvoiceShelf instance.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo
limitNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.6/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. 'List' implies a read operation, but nothing is said about permissions/auth requirements, default page size, ordering, or whether results are paged. For a collection endpoint with zero structured coverage, this is thin.

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?

A single short sentence with no waste, but its brevity reflects under-specification rather than disciplined conciseness. It is appropriately front-loaded but earns little.

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?

With two undocumented parameters, no annotations, and no output schema, the definition leaves the agent without pagination semantics, auth requirements, or return shape. It is not sufficient for calling the tool correctly beyond a bare request.

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?

Both parameters (page, limit) have 0% schema description coverage and are never mentioned in the description, so the agent gets no semantics for them. It only weakly implies a paginated list, without stating defaults or ranges.

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?

States a specific verb (List) and resource (users) scoped to the InvoiceShelf instance, and the plural naturally separates it from the sibling get_user. It does not explicitly name the alternative, but the resource and action are unambiguous.

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 get_user, nor on pagination behavior or how to retrieve a full list. The agent must infer usage entirely from the name.

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