Skip to main content
Glama
megamaced

passwords-mcp

by megamaced

update_password

Destructive

Update existing password entries by ID, changing only specified fields while preserving all others. Replace custom fields with a complete set; other attributes remain untouched.

Instructions

Update fields of an existing password by id. Only the fields you pass are changed; all others — including hidden/favorite state and custom fields — are preserved (the server rejects the write if the entry changed underneath us). Note that customFields REPLACES the whole set. Tags are left untouched and cannot be edited through this server. Provide at least one field besides id.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesId of the password to update (required).
urlNo
labelNo
notesNo
folderNo
hiddenNoHide/unhide the entry.
favoriteNo
passwordNo
usernameNo
customFieldsNoUser-defined fields. Replaces ALL existing custom fields, so send the complete set. Max 20 fields; label <= 48 chars, value <= 320 chars.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.1

TDQS

A4.7/5.0
Behavior5/5

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

The description discloses important side effects beyond annotations, including that customFields is fully replaced, hidden/favorite state is preserved, tags are untouched and uneditable, and the server rejects writes if the entry changed underneath. This is transparent about destructive behavior and complements destructiveHint: true.

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 concise and front-loaded, stating the purpose first and then adding necessary caveats in a compact manner. No unnecessary words or redundant restatements appear.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with no output schema, the description provides the key operational context: partial update behavior, customFields replacement, tags limitation, required field constraint, and optimistic concurrency rejection. This is sufficient for an agent to use the tool effectively.

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 only 30%, and while the prose clarifies update semantics and customFields behavior, several individual parameters like url, label, notes, folder, password, username, and favorite lack explicit format or meaning. In particular, folder is ambiguous (ID vs name) and no validation details are given for most fields.

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 clearly states the tool updates fields of an existing password by id, using a specific verb and resource. This distinguishes it from sibling tools like create_password, delete_password, restore_password, and search/get variants.

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

Usage Guidelines5/5

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

The description gives explicit usage guidance: only passed fields are changed, other fields are preserved, customFields replaces the entire set, tags cannot be edited, and at least one field besides id must be provided. It also notes concurrency rejection, which helps the agent decide when and how to invoke the tool safely.

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