Skip to main content
Glama

Save research into DevVault

devvault_save_research

Save current research into structured vault containers, grouped by topic and nested sub-topics, so future sessions can retrieve findings without re-deriving. Reuse external keys to update in place.

Instructions

File the current conversation's findings into the user's vault as structured containers, so neither of you has to re-derive them next time. You decide the structure: group by topic, one topic per container, and nest sub-topics as children. Write real titles. Constraints are enforced server-side and anything over them is repaired automatically (long paragraphs split, extra blocks spill into continuation containers, deep nesting is flattened and linked) — the response tells you exactly what was adjusted, so report that to the user. Always set external_key on every container: re-running the same research then updates in place instead of duplicating. Supplying agent_rules alongside the research is worth doing — it saves a future session from re-reading the prose.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
modeNo'update' reuses containers matching on external_key.update
parent_idNoNest the import under an existing container.
containersYesFlat list. The first entry is the root (parent: null); every other entry points at an earlier index.
collection_nameNoNames the collection this import creates. Defaults to the root title.
collection_descriptionNoOne or two sentences on what this collection covers and when it applies. This is what future task descriptions are matched against, so make it specific.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.8/5.0
Behavior5/5

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

With no annotations provided, the description bears full responsibility and excels: it discloses server-side constraint enforcement, automatic repair behavior (paragraph splitting, spillover, flattening), and that the response reports what was adjusted and should be relayed. It also exposes the idempotent update behavior tied to external_key. This goes well beyond a generic save description.

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 earns its place: purpose, structural guidance, repair behavior, idempotency, and agent_rules are all front-loaded with no filler. The only minor nit is its long em-dash sentence, but the information density justifies it.

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 complex, 5-parameter tool with no output schema, the description covers the important behaviors agents need: how to structure containers, what constraints will be auto-repaired, what to report back, and how to make updates idempotent. Nothing critical for a correct call is missing.

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?

Even though the schema already documents every parameter, the description adds valuable guidance beyond it: always set external_key, prefer grouping by topic with nested children, use agent_rules to save future reading, and make collection_description match against future task descriptions. This materially improves how an agent would populate the parameters.

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 action—file the current conversation's findings into the vault as structured containers—and elaborates a clear structure model: topic-based containers with nested sub-topics. This clearly distinguishes the save/import operation from retrieval-oriented siblings like devvault_search and devvault_get_container.

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?

It states the context: after research has happened, when findings should be persisted for future reuse, and advises on agent_rules and external_key to avoid duplicate/re-derived work. It does not explicitly name when to avoid this tool or point to an alternative, so it misses the top tier.

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