mcp-with-ssh

by aakarsh-sasi
Verified

log_decision

Record and document decisions in a structured format, including title, context, alternatives, and consequences, for centralized knowledge management on the MCP server.

Instructions

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" }
ID: lbc6a9lfqg