🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

correctover-mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

correctover-mcp-server

The first MCP server that verifies AI outputs in real-time — 6-dimension contract validation (structure, schema, latency, cost, identity, integrity) with automatic self-healing failover across 9+ LLM providers. BYOK, zero-dependency, one-line JSON config

latest
Source
npmnpm
Version
1.7.0
Version published
Maintainers
1
Created
Source

Correctover MCP Server

The runtime reliability layer for the MCP ecosystem.

Real-time 6-dimension output validation, self-healing failover, and drift detection for AI tool calls. Zero external dependencies, bring-your-own-API-key.

npm License GitHub

Quick Start

npx correctover-mcp-server

Set at least one API key:

export OPENAI_API_KEY=sk-...
# or
export ANTHROPIC_API_KEY=sk-ant-...
# or any of: DEEPSEEK_API_KEY, MOONSHOT_API_KEY, ZHIPU_API_KEY,
#            DASHSCOPE_API_KEY, SILICONFLOW_API_KEY, GROQ_API_KEY,
#            TOGETHER_API_KEY

Features

FeatureDescription
6-Dimension ValidationStructure, schema, latency, cost, identity, integrity
Self-Healing FailoverAuto-retry across 9+ LLM providers
Zero DepSingle Go binary, no Node/Python runtime needed
BYOKYour own API keys, your own providers
Drift DetectionReal-time response quality monitoring

Install

npx correctover-mcp-server

Via npm

npm install -g correctover-mcp-server
correctover-mcp-server

Configuration

The server reads API keys from environment variables:

VariableProviderDefault Model
OPENAI_API_KEYOpenAIgpt-4o-mini
ANTHROPIC_API_KEYAnthropicclaude-3-haiku
DEEPSEEK_API_KEYDeepSeekdeepseek-chat
MOONSHOT_API_KEYMoonshot/Kimimoonshot-v1-8k
ZHIPU_API_KEYZhipu AIglm-4-flash
DASHSCOPE_API_KEYAlibaba Qwenqwen-turbo
SILICONFLOW_API_KEYSiliconFlowdeepseek-v3
GROQ_API_KEYGroqllama-3.3-70b
TOGETHER_API_KEYTogether AImixtral-8x22b
CORRECTOVER_LICENSE_KEYLicense keyPro/Enterprise

Each variable has an optional _BASE_URL variant for custom endpoints (e.g., OPENAI_BASE_URL).

Cursor / Claude Desktop / Windsurf

Add to your MCP client config:

{
  "mcpServers": {
    "correctover": {
      "command": "npx",
      "args": ["-y", "correctover-mcp-server"],
      "env": {
        "OPENAI_API_KEY": "sk-..."
      }
    }
  }
}

Tools

ToolDescription
chatLLM chat with 6-dimension output validation and auto-failover
healthCheck provider status and connectivity
providersList all configured providers with models
statsSession statistics and reliability metrics
validation_historyRecent validation results (ring buffer, max 500)

Prompts

PromptDescription
verify-outputVerify AI-generated content for correctness
compare-providersCompare responses across providers
reliability-auditFull reliability audit of your LLM setup

License

Apache 2.0 — see LICENSE.

Keywords

mcp

FAQs

Package last updated on 06 Aug 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts