Skip to main content
Glama
norrietaylor

io.github.norrietaylor/distillery-mcp

Official
by norrietaylor

distillery_update

Update existing knowledge entries by modifying content, type, tags, status, or other fields. Provide entry ID and at least one field to change.

Instructions

Update one or more fields on an existing knowledge entry.

USE WHEN: modifying an entry's content, type, tags, status, or other mutable fields. At least one updatable field must be provided.

PARAMS:

  • entry_id (str, required): UUID of the entry to update.

  • content (str, optional): Replacement content.

  • entry_type (str, optional): New type. Valid: [session, bookmark, minutes, meeting, reference, idea, inbox, github, person, project, digest, feed].

  • author (str, optional): New author.

  • project (str, optional): New project scope.

  • tags (list[str], optional): Replacement tag list.

  • status (str, optional): New status. Valid: [active, pending_review, archived].

  • verification (str, optional): New verification. Valid: [unverified, testing, verified].

  • metadata (dict, optional): Replacement metadata dict.

  • session_id (str, optional): Session identifier for grouping.

  • expires_at (str, optional): ISO 8601 datetime; pass null to clear.

RETURNS (success): { id: str, content: str, entry_type: str, ... } (full updated entry) RETURNS (error): { error: true, code: "NOT_FOUND" | "INVALID_PARAMS" | "FORBIDDEN" | "INTERNAL", message: "..." }

RELATED: distillery_correct (to supersede rather than edit), distillery_get (to read before updating)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tagsNo
authorNo
statusNo
contentNo
projectNo
entry_idYes
metadataNo
entry_typeNo
expires_atNo
session_idNo
verificationNo
Behavior4/5

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

No annotations are provided, so the description carries the full burden. It clearly describes success and error return shapes, including error codes like NOT_FOUND and INVALID_PARAMS. It also implies partial-update semantics by saying 'one or more fields'. However, it does not explicitly state that non-provided fields remain unchanged, and it does not detail permission or validation behavior beyond error codes. Still, it gives substantial behavioral context for a mutation tool.

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 well-structured with clear sections (USE WHEN, PARAMS, RETURNS, RELATED). It front-loads the core purpose and usage, then enumerates all parameters in a compact list, followed by return formats and related tools. Every sentence contributes valuable information with no filler.

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?

Given 11 parameters, no output schema, and no annotations, the description covers all essential information: parameter names and valid values, return formats, error codes, the requirement of at least one updatable field, and relationships to sibling tools. An agent has everything needed to call the tool correctly without further research.

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?

Schema description coverage is 0%, so the description must fully explain each parameter. It does so by listing every parameter with its type, purpose, and valid enum values (e.g., for entry_type, status, verification). This adds meaningful semantics that the schema alone cannot convey.

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 ('Update') and a clear resource ('existing knowledge entry'), and it explicitly distinguishes itself from sibling tools like distillery_correct (for superseding) and distillery_get (for reading). This removes ambiguity about when this tool applies.

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 'USE WHEN' section explicitly tells the agent when to use the tool (modifying fields) and even specifies a precondition (at least one updatable field must be provided). The RELATED section names the alternative tool (distillery_correct) and the condition that selects it, leaving no ambiguity.

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

Install Server

Other Tools

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/norrietaylor/distillery'

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