Skip to main content
Glama

Keychain secret

crbro_secret
DestructiveIdempotent

Read or write credentials in the operating system's keychain while keeping only names in memory. Save, retrieve, list, remove, or check keychain status without exposing secret values.

Instructions

Read or write credentials in the operating system's keychain (macOS Keychain, Linux Secret Service, Windows DPAPI): CRBRO keeps no copy, invents no crypto, and no sync or team space can reach the store. When the user hands you a credential, set it here, then record only the NAME with crbro_learn. get returns the value for the task at hand — an environment variable of the same name wins; a missing secret returns found:false, not an error — never print it back unless the user asked. list returns names only; remove deletes one; status says which store this machine has (none is a normal answer; env vars still work). Names are SCREAMING_SNAKE_CASE; set updates in place and rejects empty values.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoSCREAMING_SNAKE_CASE, e.g. WORDPRESS_APP_PASSWORD. Required for get, set and remove.
valueNoThe credential itself, non-empty. Only for set.
actionYesget = read one, set = store or update one, list = names only, remove = delete one, status = which keychain this machine offers, or why none.
descriptionNoWhat it is for, e.g. "WordPress example.com - REST API". Only for set.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Addedv1.14.0

TDQS

A4.8/5.0
Behavior5/5

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

While annotations already mark destructiveHint and idempotentHint, the description goes further by disclosing privacy properties (CRBRO keeps no copy, invents no crypto, no sync or team space can reach the store), special return behavior (missing secret returns found:false, not an error), and operational rules (never print the value back unless asked; set rejects empty values; status with no store is normal). No contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is dense and front-loaded with the core resource and action, and every sentence contributes either an action behavior, a boundary condition, or a security rule. It is slightly long and semicolon-heavy, but it earns its length given the multi-action nature of the tool, so it is not padded.

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 multi-action secret-store tool with no output schema and a destructive remove action, the description covers all operational requirements: what each action does, what inputs are needed, edge cases, environment-variable precedence, naming conventions, and privacy constraints. It is complete enough for an agent to invoke any of the five actions correctly.

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

Parameters4/5

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

Schema coverage is 100%, so the baseline is 3, but the description adds meaning beyond the schema: it imposes a naming convention (SCREAMING_SNAKE_CASE), explains that set updates in place and rejects empty values, and clarifies behavior of each action such as list returning names only and status indicating which store exists. It doesn't fully expand every parameter, but the schema already handles that, so this is above baseline.

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 opens with a specific verb and resource: 'Read or write credentials in the operating system's keychain,' then enumerates each action (get, set, list, remove, status). It also differentiates from sibling crbro_learn by directing that only the NAME be recorded there, so an agent can tell which tool holds the credential value versus which holds a learned name.

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 concrete when-to-use instructions: 'When the user hands you a credential, set it here, then record only the NAME with crbro_learn.' It specifies action semantics for every branch, clarifies that a missing secret returns found:false rather than an error, and notes that env vars of the same name win. This is explicit enough for an agent to select the correct action and companion workflow.

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

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Octonove/crbro-memory'

If you have feedback or need assistance with the MCP directory API, please join our Discord server