Skip to main content
Glama

set_password

Set or clear a passcode on any site, including free plans. Pass a password to protect, or null to remove the existing passcode.

Instructions

Set or clear (null) a passcode on a site. Works on every plan, free keys included. Clearing one always works.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
passwordYes
id_or_slugYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.7.0

TDQS

A4/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral disclosure burden. It discloses plan compatibility and a guarantee about clearing, but it does not mention side effects, permission requirements, response behavior, or potential failure modes when setting a passcode.

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?

Two sentences with no fluff. The main purpose is front-loaded and the important caveats are included efficiently.

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 mutation tool with no output schema, the description covers the essential operation, parameter semantics, and a key condition (plan availability). It could be improved by noting return values or error behavior, but it is complete enough for correct invocation.

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 coverage is 0%, so the description must explain parameters beyond the schema. It clarifies that null clears the passcode and a string sets it, and id_or_slug implies the target site, though it does not explicitly define id_or_slug's format or constraints.

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: set or clear a passcode on a site. It also clarifies the null semantics, which directly distinguishes this tool from sibling tools like set_agentation or set_client.

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 description provides clear context for when the tool is usable, noting it works on every plan and that clearing a passcode always works. It does not explicitly name alternatives, but no password-specific sibling exists, so the guidance is sufficient.

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