MCP Servers

模型上下文协议服务器、框架、SDK 和模板的综合目录。

S
Surgical Change Control MCP

MCP server implementation of the Surgical Change Control skill — enforces minimal, targeted AI edits with explicit scope confirmation

创建于 4/24/2026
更新于 about 5 hours ago
Repository documentation and setup instructions

Surgical Change Control MCP Server

An MCP server implementation of the Surgical Change Control skill. This server provides tools to enforce disciplined, minimal AI edits by requiring scope validation and factual verification before modifications are applied.

Tools

  • define_change_boundary: Validates the smallest possible scope for a requested change.
  • detect_multi_location_impact: Scans for similar patterns across files to prevent unapproved bulk edits.
  • verify_minimal_blast_radius: Ensures proposed changes don't touch unrelated working code.
  • verify_claim_confidence: Classifies claims as Verified, Likely, or Unverified to prevent hallucination-driven edits.

Installation

For Perplexity Mac App (Desktop)

  1. Ensure you have PerplexityXPC installed.
  2. Go to Settings → Connectors in the Perplexity Mac app.
  3. Click Add Connector.
  4. Add the following command:
    npx -y surgical-change-control-mcp
    
    (Note: This assumes the package is published to npm. For local development, use the absolute path to your src/index.js).
  5. Save and wait for the status to show Running.

For Claude Desktop

Add this to your claude_desktop_config.json:

{
  "mcpServers": {
    "surgical-change-control": {
      "command": "node",
      "args": ["/path/to/surgical-change-control-mcp/src/index.js"]
    }
  }
}

Development

npm install
npm start

License

MIT

快速设置
此服务器的安装指南

安装包 (如果需要)

npx @modelcontextprotocol/server-surgical-change-control-mcp

Cursor 配置 (mcp.json)

{ "mcpServers": { "kshitizjangra-surgical-change-control-mcp": { "command": "npx", "args": [ "kshitizjangra-surgical-change-control-mcp" ] } } }