docs(mcp): document update_bank config_updates and configurable fields#1183
Merged
nicoloboschi merged 2 commits intovectorize-io:mainfrom Apr 21, 2026
Merged
Conversation
Follow-up to vectorize-io#1168: update_bank now accepts config_updates with all bank-configurable fields (reflect_mission, retain_*, disposition_*, entity_labels, recall_*, mcp_enabled_tools, etc.). Existing docs only showed name + mission; callers had to read mcp_tools.py to discover the full surface. Mirrored to skills/hindsight-docs/references/developer/mcp-server.md per the dual-doc convention (vectorize-io#1137).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
PR #1168 (merged 2026-04-21) expanded the
update_bankMCP tool to accept aconfig_updatesdict and route through the config resolver, exposing all bank-configurable fields (reflect_mission,retain_mission,retain_extraction_mode,retain_custom_instructions,retain_chunk_size,retain_chunk_batch_size,enable_observations,observations_mission,disposition_*,entity_labels,entities_allow_free_form,recall_include_chunks,recall_max_tokens,mcp_enabled_tools, …). It also deprecated the standalonemissionparameter to an alias forconfig_updates.reflect_mission.hindsight-docs/docs/developer/mcp-server.mdstill described the tool as "Update a memory bank's metadata" with onlynameandmissionin the parameter table — users had to readhindsight-api-slim/hindsight_api/mcp_tools.pyto discover the full configuration surface.Changes
update_bankintro from "metadata" to "configuration" with the "only provided fields are updated" guarantee from fix(mcp): route update_bank through config resolver, expose all fields #1168.config_updates(object) to the parameter table with the rejection semantics (non-configurable/credential fields are rejected).missionas Deprecated and link it toconfig_updates.reflect_mission.mcp_tools.py.Mirrored to
skills/hindsight-docs/references/developer/mcp-server.mdper the dual-doc convention (#1137, #1180).Pure docs — no code or test changes.
Test plan
update_bankdocstring (both_statelessand session-bound variants were identical)### update_banksection