Decision State MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Decision State MCPRecord that we decided to use PostgreSQL"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Decision State MCP
Decision State is a small MCP server for keeping project decisions outside the chat context while still making them easy for Claude Code or Codex to retrieve.
It is intentionally not a planner or executor. It only stores compact, decision-relevant state: goals, constraints, facts, assumptions, risks, decisions, and reflections.
Tools
get_state: return the current state summary and record counts.update_state: apply a JSON merge patch to.claude-state/state.json.record_evidence: save normalized evidence sources, findings, limitations, and confidence.record_decision: save a structured decision under.claude-state/decisions/.get_task_context: return compact state and matching prior records for a task.search_state: search prior decisions, evidence, reflections, and sessions.get_session: return the active decision session.reflect_outcome: record what happened after a decision or implementation.
Related MCP server: Cortex
Local Use
Install dependencies:
npm installRun the server over stdio:
npm start -- --state-dir .claude-stateThe default state directory is .claude-state relative to the process working directory. You can also set DECISION_STATE_DIR.
Claude Code MCP
From a project where you want the state to live:
claude mcp add --transport stdio decision-state -- node C:\Users\ZCX\Documents\mcp-state\server\index.js --state-dir .claude-stateState Layout
.claude-state/
state.json
decisions/
evidence/
sessions/
briefs/
reflections/
updates/Keep this state compact. Do not store raw conversation dumps, private secrets, or full source files.
Evidence Shape
Evidence is normalized into a compact structure inspired by Spice:
{
"summary": "Why this evidence matters",
"sources": [
{
"source_id": "file:src/auth.ts",
"source_type": "file",
"title": "auth module",
"path": "src/auth.ts",
"verification_status": "verified_by_agent"
}
],
"findings": [
{
"text": "Auth token validation is centralized in src/auth.ts.",
"source_refs": ["file:src/auth.ts"],
"confidence": "high"
}
],
"limitations": ["Only inspected auth files"],
"confidence": "medium"
}record_decision accepts either legacy evidence findings or an evidence_context object. When evidence is present, the server writes a separate evidence artifact, links it to the decision, updates the active session, and creates a markdown brief under .claude-state/briefs/.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Koolercat/mcp-state'
If you have feedback or need assistance with the MCP directory API, please join our Discord server