Skip to main content
Guardian
Docs
ChangelogFAQContact
Download
Guardian

AI-generated code governance for small engineering teams. Enforce team policies and approve releases with confidence.

Product

  • Changelog
  • Docs
  • FAQ
  • Contact

Resources

  • Getting Started
  • Security
  • Configuration
  • Guru AI
  • Monitoring

Legal

  • Privacy Policy

© 2026 Guardian Project. All rights reserved.

Designed & Developed bySenol Dogan

MCP Server | Guardian

Sections

Features

Guru: Release Decision AssistantProject MonitoringReviews & Fix ProposalsCLI ToolMCP Server

General

Getting Started

Operations

InstallationAuthenticationUpdatesConfigurationMigration Guide

Security

SecuritySecret Redaction

Support

Troubleshooting
Documentation

MCP Server

Connect Guardian to any IDE via Model Context Protocol

Overview

Guardian MCP Server (guardian-mcp) implements the Model Context Protocol for IDE integration.

What is MCP?

MCP lets AI assistants in your editor access Guardian's code governance tools directly. Instead of switching to the desktop app, your AI assistant can scan files, check policies, and classify code in real time.

Available Tools

ToolDescription
scan_fileScan a single file — returns metadata, language, policy classification
get_scan_policyLoad workspace policy configuration
classify_pathsWalk a directory and classify all files by scan policy
list_critiquesGuide to retrieving findings via CLI
apply_fixGuide to applying fixes via desktop app

Setup with Cursor

Add to your Cursor MCP configuration (~/.cursor/mcp.json):

{
  "mcpServers": {
    "guardian": {
      "command": "guardian-mcp",
      "args": []
    }
  }
}

Setup with Claude Desktop

Add to Claude Desktop config:

{
  "mcpServers": {
    "guardian": {
      "command": "/path/to/guardian-mcp"
    }
  }
}

Protocol

Guardian MCP uses JSON-RPC 2.0 over stdin/stdout, compatible with MCP protocol version 2024-11-05.

On This Page

OverviewWhat is MCP?Available ToolsSetup with CursorSetup with Claude DesktopProtocol