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
| Name | Required | Description | Default | 
|---|---|---|---|
| alternatives | No | Alternatives considered | |
| consequences | No | Consequences of the decision | |
| context | Yes | Decision context | |
| decision | Yes | The decision made | |
| title | Yes | Decision 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"
}