A high-performance code review MCP tool built with Rust, enabling AI assistants to present structured code reviews directly in VSCode.
- 🦀 Rust-powered MCP server for optimal performance and reliability
- 📝 Structured code reviews with clickable file references
- 🔗 Seamless VSCode integration via custom webview panel
- 🤖 AI assistant compatibility with Claude CLI, Q CLI, and other MCP clients
- ⚡ Concurrent processing with non-blocking IPC communication
# Install Rust if needed
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
# Clone and setup
git clone https://github.com/socratic-shell/dialectic.git
cd dialectic
cargo setupThen ask your AI assistant: "Present a review of the changes you just made"
# Production setup (installs to PATH)
cargo setup
# Development setup (builds in target/)
cargo setup --dev
# Setup for specific AI assistant
cargo setup --tool claude
cargo setup --tool q
cargo setup --tool both
# Skip extension build (server only)
cargo setup --skip-extension
# Skip MCP registration (build only)
cargo setup --skip-mcpFull documentation is available at: dialectic.dev
MIT