Skip to main content
Glama

Agentic Endpoints

Store an encrypted secret

vault_store
DestructiveIdempotent

Store client-side encrypted data. This service holds no key that could decrypt it and never sees plaintext; note that the item key, namespace, alg label and size ARE stored in the clear. The first store claims the namespace and returns a namespace_token shown only once — store it immediately, because it is required by every later call and cannot be recovered. Pass if_match with an item's updated_at for a compare-and-swap write, or if_absent to create only; either returns status 'precondition_failed' rather than silently clobbering a concurrent write. Costs $0.02 in USDC on Base, paid via the x402 protocol.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
algNoAlgorithm label recorded alongside the item (default aes-256-gcm)
keyYesItem key
ttlNoItem lifetime in seconds
if_matchNoOnly write if the item's current updated_at equals this. Use it whenever you are updating a value you read earlier, or a concurrent writer's change is lost silently.
if_absentNoOnly write if the key does not already exist. Fails with status 'precondition_failed' if it does.
namespaceYesIsolation scope
ciphertextYesEncrypt before sending. Plaintext here would be a mistake.
namespace_tokenNoOne-time token issued by the first call that claimed this namespace. Required for every later call.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
algNoAlgorithm label you supplied; the service never decrypts
keyYesThe key that was written
statusYes'stored'
receiptNoPayment receipt
namespaceNoIsolation scope
created_atNoISO-8601 creation time
expires_atNoExpiry, or null if it never expires
size_bytesNoStored ciphertext size
updated_atNoISO-8601 last write
namespace_tokenNoIssued only on the first store into a namespace, shown exactly once

Schema Changelog

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

  1. First observed

TDQS

A4.7/5.0
Behavior5/5

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

Even with annotations indicating mutation and destructiveness, the description adds substantial non-obvious behavioral context: the service never sees plaintext, but stores key/namespace/alg/size in the clear; the namespace_token is shown only once and cannot be recovered; concurrent writes return 'precondition_failed' instead of silently overwriting; and each call costs $0.02 via x402. There is no contradiction with the annotations.

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 dense but every sentence carries essential operational or security information. It front-loads the core purpose and privacy caveat, then covers token handling, concurrency guards, and cost. There is no fluff or restatement of the title.

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 8 parameters, concurrency controls, a one-time token, security caveats, and payment requirements, the description covers all critical invocation facts. The output schema exists, so missing return-value details are acceptable. Nothing important for correct use is left unexplained.

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?

Input schema covers all 8 parameters at 100%, so the baseline is 3. The description adds meaningful value by explaining the namespace_token lifecycle, compare-and-swap semantics, and the client-side encryption requirement. Some details are redundant with schema descriptions, so a 4 rather than 5.

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: 'Store client-side encrypted data.' It clearly distinguishes this from sibling operations like vault_retrieve, vault_list, and vault_delete. The title reinforces the core action, leaving no ambiguity about what the tool does.

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 gives concrete usage guidance: the first store claims the namespace and returns a one-time namespace_token that must be saved, and it explains when to use if_match versus if_absent to avoid clobbering concurrent writes. It does not explicitly name alternative sibling tools or provide when-not-to-use guidance, which prevents a 5.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.4/5.0
Disambiguation5/5

Each tool maps to a distinct resource and action: meetings have import/list/search/get, the once-key system has claim/complete/release, vault has store/retrieve/exists/list/delete/rotate_token, and compress/pdf_parse/scrape are separate utilities. No two tools appear to perform the same side effect, so an agent should not struggle to choose among them.

Naming Consistency5/5

Tools use consistent snake_case and mostly follow a domain_verb pattern (meetings_*, once_key_*, vault_*), with standalone verbs like compress, scrape, and pdf_parse for single utilities. The naming is predictable and easy to extend.

Tool Count4/5

At 16 tools the server is just above the ideal 3-15 range, but the count is justified by six distinct capability clusters. Each tool earns its place, and nothing feels redundant.

Completeness4/5

Core lifecycles are covered well: vault has full CRUD plus token rotation, once-key has claim/complete/release, and meetings provide import/search/get/list. Minor gaps include no meeting update/delete and no direct namespace management, but these are workable rather than blocking.