decision-table

decision-table

Provides deterministic decision and constraint evaluation for AI agents. Supports ruleset validation, fact evaluation, and constraint checking via MCP tools.

Category
Visit Server

README

Decision Table

Decision Table is a deterministic decision and constraint primitive for AI agents. It moves bounded business judgments out of model reasoning and into a strict, versioned, executable IR.

The product name and stable package, CLI, plugin, Skill, and MCP identifiers are recorded in docs/PRODUCT_IDENTITY.md.

The first release provides:

  • decision.evaluate: evaluate facts with first, unique, collect, or priority hit policy;
  • decision.validate: validate the model and conservatively prove duplicate, overlap, or shadowed rules where supported;
  • constraint.check: check a proposed candidate and return violations, missing inputs, and configured repair hints;
  • constraint.check_approved: when configured by the host, perform a read-only check against an exact approved ruleset that the caller cannot replace or backdate;
  • one shared TypeScript core, a JSON CLI, and an MCP server plus Codex plugin.

Install in Codex

codex plugin marketplace add tetracoralla/decision-table --ref main
codex plugin add decision-table@decision-table

Start a new Codex task after installation so the Skill and MCP tools load from the installed plugin. No npm account, npm package, or source build is required; the plugin contains a prebuilt MCP server and only needs Node.js 20.19 or later on PATH.

The repository root is the marketplace and plugins/decision-table is the installable plugin. See docs/INSTALLATION.md for updates, removal, and verification.

Use ordinary requests such as:

  • “Validate this decision ruleset before I use it.”
  • “Evaluate this ruleset with these facts.”
  • “Check whether this proposed action satisfies these constraints.”

Decision Table is distributed from GitHub as a Codex plugin. The Node package in this repository is private and exists only for building, testing, and local library development; it is not published to npm.

Develop from source

npm install
npm run check

For local plugin development, add this repository directory itself as a marketplace and validate the source plugin with npm run check:plugin.

CLI

npm run cli -- validate examples/payment-approval.decision.json
npm run cli -- evaluate examples/payment-approval.decision.json \
  --facts examples/payment-approval.facts.json \
  --expected-version 1.0.0
npm run cli -- check examples/email-marketing.constraint.json \
  --candidate examples/email-marketing.candidate.json \
  --facts examples/email-marketing.facts.json

All output is JSON. Use - in place of an input path to read that one document from stdin. Options not defined for the selected command are rejected. The ruleset, facts, and candidate documents share one cumulative 256 KiB limit.

For exact content pinning, pass both --expected-version and --expected-fingerprint <sha256>.

Approved checks and host enforcement

Inline constraint.check is advisory because its caller supplies the ruleset. For read-only analysis with a host-approved policy, bind the ruleset before starting the MCP server:

import {
  createApprovedConstraintChecker,
  createConstraintExecutionGuard,
  fingerprintRuleset,
} from "@openadam/decision-table";

const expected = {
  id: approvedRuleset.id,
  version: approvedRuleset.version,
  fingerprint: fingerprintRuleset(approvedRuleset),
};
const checker = createApprovedConstraintChecker({ ruleset: approvedRuleset, expected });

The bundled stdio server exposes constraint.check_approved when its host sets DECISION_TABLE_APPROVED_CONSTRAINT_JSON to the same strict binding object. The Agent cannot replace the policy or backdate the check, but it still supplies candidate and facts, so this read-only MCP tool is not an execution boundary.

For a governed side effect, keep candidate construction, trusted fact loading, checking, and execution inside a host-owned context:

const guard = createConstraintExecutionGuard(checker, async (action, run) =>
  database.transaction(async (transaction) =>
    run({
      candidate: candidateFromActualAction(action),
      facts: await loadTrustedFacts(transaction, action),
      execute: (sameActionSnapshot) =>
        executeActualAction(transaction, sameActionSnapshot),
    }),
  ),
);

const outcome = await guard.execute(actualToolArguments);

The guard snapshots the actual action, blocks the executor unless constraints return valid, and passes that same frozen snapshot to execution. The host-owned context is where a transaction or lock must keep volatile facts valid through the side effect. The guard is a library boundary and is intentionally not an Agent-callable MCP tool.

Ruleset shape

Conditions are tagged data, never executable strings:

{
  "op": "compare",
  "left": { "kind": "fact", "path": "amount" },
  "comparator": "gte",
  "right": { "kind": "literal", "value": "10000" }
}

Decimal inputs are strings. Missing paths produce UNKNOWN; they are not coerced to false. Datetimes require a real ISO calendar value, explicit offset, seconds, and no more than millisecond precision. See examples/ and docs/PRODUCT_MODEL.md for the complete product boundary.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured