correctover-mcp-server
OfficialClick 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., "@correctover-mcp-serverVerify and execute the database migration with CCS checks."
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.
correctover-mcp-server
CCS-native MCP Server — 6-dimension runtime verification with fail-closed guarantee
What is this?
correctover-mcp-server is an MCP (Model Context Protocol) server that embeds CCS (Correctover Conformance Standard) runtime verification directly into the protocol layer. Every tool call is verified across 6 dimensions before execution — if verification fails, the action is never executed (fail-closed).
This is not an observer-pattern governance hook. It is a protocol-level guarantee.
Related MCP server: arc-gate-mcp
Architecture
┌─────────────────────────────────────────────────────┐
│ MCP Client │
│ (any MCP 2026-07-28 compliant client) │
├─────────────────────────────────────────────────────┤
│ Streamable HTTP Transport │
│ (POST /mcp, _meta version negotiation) │
─────────────────────────────────────────────────────┤
│ CCS Runtime Verification │
│ ┌──────────┬──────────┬──────────┬──────────┐ │
│ │ Structure│ Schema │ Latency │ Cost │ │
│ │ Verifier │ Validator│ Monitor │ Monitor │ │
│ ├──────────┼──────────┼──────────┼──────────┤ │
│ │ Identity │ Integrity│ Policy │ Failover │ │
│ │ Tracker │ Checker │ Engine │ Engine │ │
│ └──────────┴──────────┴──────────┴──────────┘ │
│ ANY dimension fails → Action BLOCKED (never runs) │
├─────────────────────────────────────────────────────┤
│ Tool Execution │
│ (only reached if ALL 6 dimensions pass) │
└─────────────────────────────────────────────────────┘6-Dimension Verification
Dimension | Verifies | Failure Mode |
Structure | Request has valid structure, protocol version, method | Malformed request rejected |
Schema | Input matches expected tool schema | Invalid input rejected |
Latency | Verification within budget (P50<10μs, P99<25μs) | Timeout → Fail-Closed |
Cost | Resource usage within limits | Budget exceeded → blocked |
Identity | Client is traceable (clientInfo present) | Untraceable → rejected |
Integrity | Request is complete and non-empty | Corrupted → rejected |
Quick Start
Install
git clone https://github.com/Correctover/correctover-mcp-server.git
cd correctover-mcp-server
npm installRun
# Development
npm run dev
# Production
npm run build
npm startConfigure
# Environment variables
export MCP_PORT=3000 # Default: 3000
export MCP_HOST=127.0.0.1 # Default: 127.0.0.1
export CCS_AUDIT=true # Enable audit loggingMCP Protocol Compliance
This server implements MCP 2026-07-28 (modern-only):
✅
server/discover— broadcasts protocol versions, capabilities, CCS identity✅ Streamable HTTP transport (POST /mcp)
✅
_metaper-request version negotiation (no initialize handshake)✅
resultTypeon all responses (complete/input_required)✅ MRTR pattern for human-in-the-loop (InputRequiredResult)
✅
subscriptions/listenfor change notifications✅
CacheableResultwithttlMs+cacheScope✅ Standard headers (
Mcp-Method,Mcp-Name,MCP-Protocol-Version)❌ No
initializehandshake (modern-only, no dual-era)❌ No HTTP+SSE transport (deprecated)
Available Tools
ccs_verify
Run 6-dimension runtime verification on an agent action.
{
"agent_id": "agent-123",
"action_type": "tool_call",
"tool_name": "search_web",
"tool_input": { "query": "test" }
}ccs_evidence_hash
Generate integrity evidence hash for audit chain sealing.
{
"action_id": "action-456",
"result": { "output": "verified" },
"verifier_id": "ccs"
}ccs_status
Get CCS runtime status and performance statistics.
Available Resources
ccs://policy/default— Default verification policy configurationccs://status/runtime— Real-time runtime statisticsccs://config/verifier— Verifier configuration (latency budget, cost limits)
CCS Extension
This server advertises the CCS extension via server/discover:
{
"extensions": {
"io.modelcontextprotocol/ccs": {
"version": "1.0.0",
"dimensions": ["structure", "schema", "latency", "cost", "identity", "integrity"],
"failClosed": true,
"maxOverheadUs": 25
}
}
}Integration with Halo
The ccs_evidence_hash tool generates hashes compatible with Halo's verification block (v0.2.30+), enabling sealed audit chains:
{
"verification": {
"status": "verified",
"verifier": "ccs",
"policy_ref": "default",
"checked_at": "2026-08-03T12:00:00Z",
"evidence_hash": "0x..."
}
}Performance
P50 verification latency: < 10μs
P99 verification latency: < 25μs
Fail-closed guarantee: Action blocked if ANY dimension fails
Development
# Build
npm run build
# Test
npm test
# Lint
npm run lint
# Format
npm run formatLicense
MIT
References
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
Alicense-qualityCmaintenancePolicy enforcement gateway for MCP tool calls, evaluating every tool invocation against declarative YAML policies (allow/deny/escalate-to-human), generating cryptographic hash-chained audit receipts, and including built-in content safety scanning.Last updated2MIT- AlicenseAqualityAmaintenanceRuntime governance proxy for MCP tool calls. Inspects tool results for prompt injection and capability abuse before they reach your agent, blocking attacks that exploit the MCP trust boundary.Last updated12AGPL 3.0
- Flicense-qualityBmaintenanceRuntime allowlist and policy for agent tool-calls, enabling security scanning (e.g., TODO/FIXME/XXX findings) via MCP for AI agents.Last updated
- Alicense-qualityCmaintenanceGovernance engine for MCP tool calls, providing deterministic rule enforcement to block destructive actions like SQL drops, shell commands, and file system modifications before execution.Last updated2Apache 2.0
Related MCP Connectors
Runtime permission, approval, and audit layer for AI agent tool execution.
Fail-closed action authorization, MCP risk scanning, x402 checks, and signed receipts.
Static MCP manifest and tool-policy security preflight with signed input-redacted receipts
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/Correctover/correctover-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server