MCP server intelligence profile

decisionnode/DecisionNode MCP Server

Record development decisions as structured JSON, embed them as vectors via Gemini, and search semantically over MCP. Works with Claude Code, Cursor, Windsurf, and any MCP client

Local OnlyOfficial distributiondecisionnode
Verified cleanNpm · 0.6.0

Our scanner tested version 0.6.0 without proving a finding in the methods exercised. This is not a guarantee that every deployment is secure.

1Distribution channel
9Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

Install decisionnode from npm

Version 0.6.0 declares 3 executable entrypoints.

npm install --save-exact decisionnode@0.6.0
npx -y -p decisionnode@0.6.0 decide
npx -y -p decisionnode@0.6.0 decisionnode
npx -y -p decisionnode@0.6.0 decide-mcp

Identity

Canonical slugdecisionnode-decisionnode-f6462f53DeploymentLocal Only
Canonical packagenpm:decisionnodeRepositorydecisionnode/DecisionNode
First publishedLatest release
Last security verificationClassification confidence90%
PublicationPublishedOfficial distributionYes

Distributions

ChannelIdentifierCurrent versionVersionsSource
npmdecisionnode0.6.08Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npmdecisionnode0.6.0CurrentSep 5, 20269 toolsSucceeded · 0 resources · 0 promptsFailed
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

Provenanceartifact_hash_verifiedSignature
MCP SDK@modelcontextprotocol/sdk Artifact SHA-256867a31e5d6d95340bd6527bdcefc71fefac6764d7e04744aff50d2bbec4a1aad
Scannermcp-proof-engine 0.1.0Scan completedAug 20, 2026
Security rating43 / 100Methodologyversion-rating-1.0
Executable entrypoints
[
  "decide",
  "decisionnode",
  "decide-mcp"
]
Rating reasons
[
  "security_policy_not_observed"
]

Current protocol inventory

2025-06-18Negotiated protocol
decisionnodeServer-reported name
1Capability groups
Aug 15, 2026Observed

Tools 9

ToolCategoryAnnotationsRisk
add_decision**Call this IMMEDIATELY** when user says phrases like: "Let's use...", "From now on...", "Always do...", "Never do...", "I prefer...", "The standard is...", "We should always...", or confirms ANY technical approach. Also call when: (1) A design pattern is established, (2) An architectural choice is made, (3) Coding standards are discussed, (4) UI/UX conventions are agreed, (5) Technology stack decisions happen. Capture decisions DURING the conversation, not after. Focus on WHY, not just WHAT.
Input schema
{
  "type": "object",
  "properties": {
    "scope": {
      "type": "string",
      "description": "Category: UI, Backend, API, Architecture, Database, Security, Testing, DevOps, Styling, Performance"
    },
    "decision": {
      "type": "string",
      "description": "Clear statement of what was decided (be specific and actionable)"
    },
    "rationale": {
      "type": "string",
      "description": "Why this decision was made - this is crucial for future context"
    },
    "constraints": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Specific rules or requirements to follow"
    },
    "global": {
      "type": "boolean",
      "description": "Set to true to create a global decision that applies across ALL projects (e.g., \"always use TypeScript strict mode\", \"never commit .env files\")"
    },
    "force": {
      "type": "boolean",
      "description": "Set to true to skip conflict detection and add the decision even if similar ones exist. Use after reviewing the conflicts returned by a previous add_decision call."
    },
    "project": {
      "type": "string",
      "description": "The workspace folder name"
    }
  },
  "required": [
    "scope",
    "decision",
    "rationale",
    "constraints",
    "project"
  ]
}
delete_decisionPermanently delete a decision. Only use when a decision was created in error. For outdated decisions, prefer update_decision with status=deprecated to preserve history.
Input schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Decision ID to delete"
    },
    "project": {
      "type": "string",
      "description": "The workspace folder name"
    }
  },
  "required": [
    "id",
    "project"
  ]
}
get_decisionGet full details of a specific decision by ID. Use this after search_decisions returns relevant results to get complete context including rationale and constraints.
Input schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Decision ID (e.g., ui-001)"
    },
    "project": {
      "type": "string",
      "description": "The workspace folder name"
    }
  },
  "required": [
    "id",
    "project"
  ]
}
get_historyView the activity log of recent decision changes. Use this to understand what decisions were recently added or modified.
Input schema
{
  "type": "object",
  "properties": {
    "limit": {
      "type": "number",
      "description": "Number of entries (default: 10)"
    },
    "project": {
      "type": "string",
      "description": "The workspace folder name"
    }
  },
  "required": [
    "limit",
    "project"
  ]
}
get_statusGet project decision status overview including total count and last activity. Use this for a quick health check of the decision store.
Input schema
{
  "type": "object",
  "properties": {
    "project": {
      "type": "string",
      "description": "The workspace folder name"
    }
  },
  "required": [
    "project"
  ]
}
list_decisionsList all recorded decisions for the project. Use this when you need a complete overview of project conventions, or when starting work on a new feature area to understand existing patterns.
Input schema
{
  "type": "object",
  "properties": {
    "scope": {
      "type": "string",
      "description": "Filter by scope (e.g., UI, Backend, API, Architecture)"
    },
    "project": {
      "type": "string",
      "description": "The workspace folder name"
    }
  },
  "required": [
    "project"
  ]
}
list_projects**Call this FIRST if unsure which project to use.** In monorepos or multi-project workspaces, this lists all projects with decisions. Match the returned project name to the subfolder in the user's active file path. Example: if user is editing ".../my-app/src/component.tsx", look for project "my-app" in the results.
Input schema
{
  "type": "object",
  "properties": {
    "verbose": {
      "type": "boolean",
      "description": "Include detailed statistics (default: false)"
    }
  }
}
search_decisions**MANDATORY: Call this FIRST before ANY code changes.** When user asks you to: add a feature, modify code, fix a bug, implement something, refactor, style UI, or make ANY technical choice — you MUST call this tool FIRST to check for existing conventions. Skipping this causes inconsistency and wasted rework. Query with what you're about to work on: "button styling", "error handling", "API design", "authentication", "database schema", "component structure". If no decisions exist, proceed freely; if decisions exist, FOLLOW them.
Input schema
{
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "description": "Natural language query describing what you are about to work on (e.g., \"button styling\", \"API error handling\", \"database connection\")"
    },
    "limit": {
      "type": "number",
      "description": "Maximum number of results (default: 3)"
    },
    "project": {
      "type": "string",
      "description": "REQUIRED: The project folder name. Extract this from the user's active file path (e.g., if path is \".../decisionnode-marketplace/src/...\", use \"decisionnode-marketplace\"). Call list_projects first if unsure."
    }
  },
  "required": [
    "query",
    "project"
  ]
}
update_decisionUpdate an existing decision when requirements change or the approach evolves. Use this instead of creating duplicate decisions.
Input schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Decision ID to update"
    },
    "decision": {
      "type": "string",
      "description": "Updated decision text"
    },
    "rationale": {
      "type": "string",
      "description": "Updated rationale"
    },
    "status": {
      "type": "string",
      "enum": [
        "active",
        "deprecated"
      ],
      "description": "Set to \"deprecated\" to hide from search (keeps for history), or \"active\" to re-enable. Only change when the user explicitly asks."
    },
    "constraints": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Updated list of constraints"
    },
    "project": {
      "type": "string",
      "description": "The workspace folder name"
    }
  },
  "required": [
    "id",
    "decision",
    "rationale",
    "constraints",
    "project"
  ]
}

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

decisionnode/DecisionNode MCP Server questions

How do I install decisionnode/DecisionNode MCP Server?

Install the selected package version with: npm install --save-exact decisionnode@0.6.0

What tools does decisionnode/DecisionNode MCP Server provide?

decisionnode/DecisionNode MCP Server exposed 9 tools during independent protocol observation, including add_decision, delete_decision, get_decision, get_history, get_status, list_decisions, list_projects, search_decisions, and others.

Is decisionnode/DecisionNode MCP Server secure?

Our scanner tested version 0.6.0 without proving a finding in the methods exercised. This is not a guarantee that every deployment is secure.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Official vs Community MCP Servers

Let’s talk about MCP security.

Share your details and our security team will contact you.