An AI-powered MCP server that prevents broken builds by analyzing code impact in real-time. Syke provides a visual dependency map and a 'Safety Gate' to catch silent regressions before you commit. Essential for developers using AI coding agents like Cursor and Claude Code.
Overview
🛡️ SYKE: The Missing Map for AI Coding
AI coding agents are great, but they often lack a deep understanding of your codebase's hidden dependencies. SYKE bridges this gap by providing a real-time semantic dependency graph and a build-time safety gate.
🚀 Key Features
- Impact Analysis: Automatically identify every file (direct or indirect) affected by a code change.
- Safety Gate (
gate_build): A final PASS/WARN/FAIL check before every build to prevent cascading failures. - Visual Dashboard: Access an interactive Cytoscape-powered dependency map at
localhost:3333. - Zero Configuration: Out-of-the-box support for 8 languages including TypeScript, Go, Rust, and Python.
- Real-time Monitoring: Instant feedback as you type—watch your dependency graph pulse in response to changes.
🛠️ Why use SYKE?
Prevent "silent regressions" where changing a utility in one file breaks a service five layers deep. SYKE empowers your AI to code with confidence by giving it the architectural context it was never born with.
🎁 Pricing & Trial
- 3-Day Full Pro Trial: Experience all premium features (Real-time monitoring, AI semantic analysis) for 72 hours upon first launch.
- Free Tier: Essential impact analysis tools for small projects (up to 50 files).
- Pro Tier: Unlimited files, real-time monitoring, and Gemini-powered deep analysis for $12/mo.
🏁 Quick Start
Simply add the server configuration above to your MCP client (Cursor, Claude Desktop, etc.) and launch your environment.
Server Config
{
"mcpServers": {
"syke": {
"command": "npx",
"args": [
"-y",
"@syke1/mcp-server@latest"
],
"env": {
"SYKE_LICENSE_KEY": "<YOUR_LICENSE_KEY_OR_EMPTY_FOR_TRIAL>"
}
}
}
}