Cursor10x MCP

MIT License
  • Apple
  • Linux

storeDecision

Records project decisions in long-term memory, capturing title, content, reasoning, importance, and optional metadata for future reference and retrieval in the Cursor10x MCP system.

Instructions

Stores a project decision in the long-term memory

Input Schema

NameRequiredDescriptionDefault
contentYesContent of the decision
importanceNoImportance level (low, medium, high)medium
metadataNoOptional metadata for the decision
reasoningNoReasoning behind the decision
titleYesTitle of the decision

Input Schema (JSON Schema)

{ "properties": { "content": { "description": "Content of the decision", "type": "string" }, "importance": { "default": "medium", "description": "Importance level (low, medium, high)", "type": "string" }, "metadata": { "additionalProperties": true, "description": "Optional metadata for the decision", "type": "object" }, "reasoning": { "description": "Reasoning behind the decision", "type": "string" }, "title": { "description": "Title of the decision", "type": "string" } }, "required": [ "title", "content" ], "type": "object" }
ID: kp8cg6inwq