Skip to main content
Glama
jamesdeane2

MCP IT Glue Server

by jamesdeane2

get_password

Retrieve password details by ID from IT Glue, optionally including the actual password value, returned as JSON.

Instructions

Get a specific password by ID.

Args: password_id: The IT Glue password ID show_password: Whether to include the actual password value

Returns: JSON string with password details

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
password_idYes
show_passwordNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.3/5.0
Behavior3/5

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

With no annotations provided, the description carries the full burden. It does disclose that show_password controls whether the actual password value is included and that the result is a JSON string. However, it does not mention security implications, permission requirements, or that this is a read-only operation, which would be useful for a sensitive password resource.

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?

The description is compact, front-loaded with the core purpose, and uses a clear Args/Returns structure. Every line contributes useful information without unnecessary filler.

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 two-parameter retrieval tool, the description covers the essential behavior, parameters, and return type. It lacks explicit mention of error cases or authorization assumptions, but the presence of an output schema and the simplicity of the tool make this reasonably complete.

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

Parameters5/5

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

Schema description coverage is 0%, but the description fully compensates by explaining each parameter: password_id is the IT Glue password ID and show_password indicates whether to include the actual password value. This adds meaningful semantic information beyond the bare schema types.

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 states a specific verb and resource: "Get a specific password by ID." This clearly distinguishes it from siblings like list_passwords, search_passwords, update_password, and delete_password, which all have different operations.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The phrase "by ID" clearly indicates this tool is for retrieving a single known password rather than listing or searching. It does not explicitly mention when not to use it or name alternatives, but the context is clear enough for an agent to select it appropriately.

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