Memory Bank MCP

by movibe
Verified

log_decision

Log a decision in the decision log

Input Schema

NameRequiredDescriptionDefault
alternativesNoAlternatives considered
consequencesNoConsequences of the decision
contextYesDecision context
decisionYesThe decision made
titleYesDecision title

Input Schema (JSON Schema)

{ "properties": { "alternatives": { "description": "Alternatives considered", "items": { "type": "string" }, "type": "array" }, "consequences": { "description": "Consequences of the decision", "items": { "type": "string" }, "type": "array" }, "context": { "description": "Decision context", "type": "string" }, "decision": { "description": "The decision made", "type": "string" }, "title": { "description": "Decision title", "type": "string" } }, "required": [ "title", "context", "decision" ], "type": "object" }