DecisionNode: CLI and MCP Server for Semantic Decision Storage

What DecisionNode Does
DecisionNode provides persistent decision storage across AI tools through a CLI and MCP server. You record structured decisions as JSON, they get embedded as vectors, and your AI can search and retrieve them via MCP. All decisions for a project (or global decisions) are accessible from every AI tool you use.
Key Features
- Structured decision format: Each decision is JSON with scope, decision, rationale, and constraints
- MCP integration: AI tools can access decisions through the Model Context Protocol
- Semantic search: Decisions are embedded as vectors for semantic retrieval
- Cross-tool compatibility: Works with Claude Code, Cursor, Windsurf, Antigravity, or any MCP client
- Local-only: All data stays on your machine
- Free and open source: MIT licensed
Decision Structure Example
{
"id": "ui-001",
"scope": "UI",
"decision": "Use Tailwind CSS for all styling",
"status": "active",
"rationale": "Consistent design tokens, easy for AI to generate correct classes.",
"constraints": [
"No arbitrary values (e.g. w-[37px]) unless absolutely necessary"
]
}How It Works
The AI calls search_decisions through MCP when it needs context, instead of running RAG and injecting results into the context window. This provides a more structured alternative to memory.md/claude.md files, with the developer finding DecisionNode to be a useful complement to existing memory systems.
Additional Features
The tool includes agent behavior/search configuration, decision history tracking, conflict detection, and more tools accessible through MCP. The developer built it primarily with Claude Code after starting with Antigravity, finding it particularly useful when switching between different AI tools while maintaining consistent project decisions.
📖 Read the full source: r/ClaudeAI
👀 See Also

How to Move or Rename Claude Code Project Folders Without Losing Session History
Claude Code stores session history using absolute project paths, so moving or renaming folders with mv breaks session access. The clamp tool fixes this by migrating session data to match new paths.

Telegram Bot for Claude Code CLI Control from Mobile
A developer built a Telegram bot that bridges to the Claude Code CLI, allowing control via mobile commands like /commit, /code_review, and /simplify. The bot auto-discovers custom skills, processes photos/documents/voice notes, and supports group chat sessions.

Giving Claude a Local LLM as an Assistant via MCP on Mac
A developer connects Claude to a local Qwen 2.5 Coder 14B via Ollama and MCP, creating a no-cost assistant for delegating tasks like text processing and handling large files.

Exploring AI with Tiny Bots: Understanding AI Agents Through Nanobot Tutor
OpenClaw community member shares insights with the 'Nanobot Tutor', a miniature framework aimed at demystifying AI agent functionality. Discover how diving into this compact learning environment unveils the workings of intelligent agents.