Gives Claude five code analysis tools that work through regex and text parsing instead of AST libraries. You get check_code_style for enforcing indentation, line length, quotes, and semicolons. check_naming_conventions flags mixed camelCase, snake_case, and other identifier styles with language-aware rules for TypeScript, Python, and Go. analyze_complexity measures cyclomatic complexity and nesting depth per function. find_dead_code spots unused variables, unreachable statements, and empty catch blocks. analyze_imports catches unused imports and enforces ordering conventions. Reach for this when you want Claude to audit code quality without spinning up heavy linting infrastructure.
claude mcp add --transport stdio io.github.rog0x-lint -- npx -y @rog0x/mcp-lint-tools