Skip to main content
Glama
WYRE-AI

Printix MCP Server

by WYRE-AI

printix_get_user

Fetch a Printix user's information using their unique user ID. Use this to look up user details for verification or troubleshooting.

Instructions

Find a single Printix user by ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
userIdYesPrintix user ID.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior3/5

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

No annotations are provided, so the description carries the burden of behavioral disclosure. It communicates that this is a lookup/read operation for a single entity, but it does not describe response behavior, not-found handling, authentication needs, or side effects. Basic transparency is present, but richer context is missing.

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?

A single sentence that front-loads the action, resource, and identifier. There is no wasted wording or redundant elaboration.

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 one-parameter getter with no output schema, the description is mostly complete: it names the entity, the lookup mode, and the required identifier. It does not specify the return shape or error behavior, but the low complexity makes this a minor gap rather than a major omission.

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 description coverage is 100%, and the schema already defines userId as the Printix user ID. The description adds no additional meaning or constraints beyond the schema, so the baseline of 3 is appropriate.

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 uses a specific verb ('Find'), names the resource ('Printix user'), and identifies the distinguishing scope ('single ... by ID'). This clearly separates it from list-oriented siblings like printix_list_users and other get tools.

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?

The description implies use when the caller has a specific user ID and needs one record rather than a list, but it does not explicitly state when to use this tool versus alternatives such as printix_list_users or printix_get_group. The guidance is inferable, not explicit.

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