code-analyzer-server

vigourpt/code-analyzer-server

3.1

If you are the rightful owner of code-analyzer-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

The Code Analyzer MCP Server provides tools to analyze and fix code issues across various programming languages.

The Code Analyzer MCP Server is designed to help developers identify and resolve bugs, errors, and functionality issues in their code. It supports both front-end and back-end code analysis, offering tools for JavaScript, TypeScript, HTML, CSS, and Python. The server not only detects issues but also provides options to automatically fix them or suggest solutions. This makes it an invaluable tool for maintaining code quality and efficiency in software development projects.

Features

  • Analyze JavaScript/TypeScript code using ESLint
  • Analyze HTML code using HTMLHint
  • Analyze CSS code using Stylelint
  • Analyze Python code using Pyright
  • Automatically fix issues when possible

Usages

usage with VSCode

{
  "mcp": {
    "servers": {
      "code-analyzer-server": {
        "command": "python",
        "args": ["code_analyzer.py"]
      }
    }
  }
}

usage with Claude

{
  "mcpServers": {
    "code-analyzer-server": {
      "command": "python",
      "args": ["code_analyzer.py"]
    }
  }
}

Tools

  1. analyze_code

    Analyzes code for bugs, errors, and functionality issues.

  2. fix_issues

    Fixes identified issues in code.

  3. get_fix_suggestions

    Gets suggestions for fixing identified issues.