loading…
Search for a command to run...
loading…
MCP server that integrates GauntletCI to analyze behavioral change risk in commits, providing findings as text, JSON, or SARIF reports for AI assistants.
MCP server that integrates GauntletCI to analyze behavioral change risk in commits, providing findings as text, JSON, or SARIF reports for AI assistants.
Model Context Protocol (MCP) server that exposes GauntletCI behavioral change risk analysis as tools for AI coding assistants (Claude, Copilot, Cursor, etc.).
| Tool | Description |
|---|---|
analyze_commit |
Run GauntletCI on HEAD, return findings as readable text |
get_findings_json |
Run GauntletCI, return raw JSON for programmatic use |
get_sarif |
Run GauntletCI, return SARIF 2.1.0 report |
dotnet tool install -g GauntletCInpm install
npm run build
Add to claude_desktop_config.json:
{
"mcpServers": {
"gauntletci": {
"command": "node",
"args": ["/path/to/GauntletCI-MCP/dist/index.js"]
}
}
}
Add to .vscode/mcp.json:
{
"servers": {
"gauntletci": {
"type": "stdio",
"command": "node",
"args": ["${workspaceFolder}/path/to/GauntletCI-MCP/dist/index.js"]
}
}
}
Once connected, ask your AI assistant:
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"gauntletci-mcp": {
"command": "npx",
"args": []
}
}
}