MCP Plugin

A Model Context Protocol server that gives Claude structured skeptical review tools. Confidence history, auto-review mode, and export — all as MCP tools that Claude can call directly.

Features

Structured Review

5 skeptic personas analyze AI output through a structured prompt with confidence ratings and specific concerns.

Confidence History

Scores tracked over time in a local JSONL file. See trends, weakest dimensions, and strongest areas.

Auto-Review Mode

Toggle on to get a quick confidence score appended to every AI response automatically.

Export Reviews

Save any review to your Desktop as markdown or HTML for sharing, archiving, or further analysis.

Installation

Download

curl -LO https://checkie.ai/skill/checkie-mcp.tar.gz
mkdir -p ~/checkie-mcp
tar xzf checkie-mcp.tar.gz -C ~/checkie-mcp
cd ~/checkie-mcp && npm install

Configure for Claude Desktop

Add to your Claude Desktop config file (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "checkie": {
      "command": "node",
      "args": ["/path/to/checkie-mcp/index.js"]
    }
  }
}

Configure for Claude Code

Add to your project's .mcp.json or global MCP config:

{
  "mcpServers": {
    "checkie": {
      "command": "node",
      "args": ["/path/to/checkie-mcp/index.js"]
    }
  }
}

After configuring, restart Claude Desktop or Claude Code. The Checkie tools will be available immediately.

MCP Tools

ToolDescription
checkie_reviewRun a skeptical review of AI-generated text through 5 personas. Supports full, quick, critical, compare, and ask modes.
checkie_save_reviewSave review scores to confidence history for trend tracking.
checkie_get_historyRetrieve past review scores, averages, weakest/strongest dimensions, and recent review table.
checkie_auto_toggleEnable or disable auto-review mode (quick confidence score after every response).
checkie_auto_statusCheck whether auto-review mode is currently enabled.
checkie_export_reviewExport a review to your Desktop as markdown or HTML file.

checkie_review

The main tool. Runs AI text through 5 skeptic personas and returns structured review instructions.

ParameterTypeDescription
textstring (required)The AI response text to review
modeenum (optional)full, quick, critical, compare, or ask. Default: full
focusstring (optional)Focus area or question (for ask mode or narrowing scope)
alternativestring (optional)Alternative response for compare mode

checkie_save_review

Saves review scores to the local confidence history log.

ParameterTypeDescription
composite_scorenumberOverall score (1.0-5.0)
logicnumberLogic & Reasoning score (1-5)
evidencenumberEvidence & Accuracy score (1-5)
completenessnumberCompleteness score (1-5)
biasnumberBias & Framing score (1-5)
practicalitynumberPracticality score (1-5)
topicstringBrief topic summary
modestring (optional)Review mode used

checkie_get_history

Returns review history with averages, trends, and a table of recent reviews.

ParameterTypeDescription
limitnumber (optional)Max recent reviews to return. Default: 20

checkie_export_review

Exports a review to a timestamped file on your Desktop.

ParameterTypeDescription
contentstringFull review content in markdown format
formatenum (optional)md or html. Default: md

Review Modes

ModeDescription
FullAll personas with detailed analysis, ratings, and actionable suggestions
QuickCondensed single-table summary with one-line verdicts
CriticalOnly shows personas that rated 3 stars or below
CompareSide-by-side comparison of two responses across all 5 dimensions
Ask5 personas answer a question independently, then consensus and disagreements

Data Storage

All data is stored locally:

Requirements