Model Context Protocol

Deslint MCP — the verification layer inside your AI coding agent.

Deslint ships a Model Context Protocol server that runs as a local subprocess of any MCP-compatible agent. The agent calls deterministic tools — analyze_and_fix, enforce_budget, compliance_check — before it writes code, so drift and accessibility failures never land in your PR. Zero LLM in the hot path. Zero code leaves your machine.

Install in one command

The installer detects Claude Desktop and Cursor and writes the MCP config for you. For other agents, drop the snippet below into the agent's MCP config file.

$ npx @deslint/mcp install
{
  "mcpServers": {
    "deslint": {
      "command": "npx",
      "args": ["-y", "@deslint/mcp"]
    }
  }
}

Pick your agent

Tools the agent can call

Why a local MCP server — not a cloud review bot

Install for Claude CodeInstall for CursorFull docs

Further reading: How to fix design drift in AI-generated code →