MCP cover image
See in Github
2025-03-10

MCP server for analyzing code for bugs, errors, and functionality issues

1

Github Watches

1

Github Forks

0

Github Stars

Code Analyzer MCP Server

This MCP server provides tools to analyze code for bugs, errors, and functionality issues in both front-end and back-end code, with options to fix them.

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
  • Get suggestions for fixing identified issues

Available Tools

1. analyze_code

Analyzes code for bugs, errors, and functionality issues.

Parameters:

  • path (required): Path to the file or directory to analyze
  • language (optional): Language of the code (auto-detected if not provided)
    • Options: 'javascript', 'typescript', 'html', 'css', 'python', 'auto'
  • fix (optional): Whether to automatically fix issues when possible (default: false)

Example:

use_mcp_tool({
  server_name: "code-analyzer-server",
  tool_name: "analyze_code",
  arguments: {
    path: "/path/to/your/file.js",
    language: "javascript",
    fix: true
  }
});

2. fix_issues

Fixes identified issues in code.

Parameters:

  • path (required): Path to the file to fix
  • issueIds (required): Array of issue IDs to fix (from analyze_code results)

Example:

use_mcp_tool({
  server_name: "code-analyzer-server",
  tool_name: "fix_issues",
  arguments: {
    path: "/path/to/your/file.js",
    issueIds: ["js-/path/to/your/file.js-0", "js-/path/to/your/file.js-1"]
  }
});

3. get_fix_suggestions

Gets suggestions for fixing identified issues.

Parameters:

  • path (required): Path to the file with issues
  • issueId (required): ID of the issue to get suggestions for

Example:

use_mcp_tool({
  server_name: "code-analyzer-server",
  tool_name: "get_fix_suggestions",
  arguments: {
    path: "/path/to/your/file.js",
    issueId: "js-/path/to/your/file.js-0"
  }
});

Usage Examples

Analyzing JavaScript Code

use_mcp_tool({
  server_name: "code-analyzer-server",
  tool_name: "analyze_code",
  arguments: {
    path: "/path/to/your/file.js"
  }
});

Analyzing and Automatically Fixing JavaScript Code

use_mcp_tool({
  server_name: "code-analyzer-server",
  tool_name: "analyze_code",
  arguments: {
    path: "/path/to/your/file.js",
    fix: true
  }
});

Analyzing HTML Code

use_mcp_tool({
  server_name: "code-analyzer-server",
  tool_name: "analyze_code",
  arguments: {
    path: "/path/to/your/file.html",
    language: "html"
  }
});

Analyzing CSS Code

use_mcp_tool({
  server_name: "code-analyzer-server",
  tool_name: "analyze_code",
  arguments: {
    path: "/path/to/your/file.css",
    language: "css"
  }
});

Analyzing Python Code

use_mcp_tool({
  server_name: "code-analyzer-server",
  tool_name: "analyze_code",
  arguments: {
    path: "/path/to/your/file.py",
    language: "python"
  }
});

Installation

The server has been installed and configured in your MCP settings. To use it, simply restart your VSCode or Claude application to load the new MCP server.

相关推荐

  • https://suefel.com
  • Latest advice and best practices for custom GPT development.

  • NiKole Maxwell
  • I craft unique cereal names, stories, and ridiculously cute Cereal Baby images.

  • Yusuf Emre Yeşilyurt
  • I find academic articles and books for research and literature reviews.

  • https://maiplestudio.com
  • Find Exhibitors, Speakers and more

  • Carlos Ferrin
  • Encuentra películas y series en plataformas de streaming.

  • Bora Yalcin
  • Evaluator for marketplace product descriptions, checks for relevancy and keyword stuffing.

  • Joshua Armstrong
  • Confidential guide on numerology and astrology, based of GG33 Public information

  • Elijah Ng Shi Yi
  • Advanced software engineer GPT that excels through nailing the basics.

  • Contraband Interactive
  • Emulating Dr. Jordan B. Peterson's style in providing life advice and insights.

  • rustassistant.com
  • Your go-to expert in the Rust ecosystem, specializing in precise code interpretation, up-to-date crate version checking, and in-depth source code analysis. I offer accurate, context-aware insights for all your Rust programming questions.

  • Emmet Halm
  • Converts Figma frames into front-end code for various mobile frameworks.

  • apappascs
  • Discover the most comprehensive and up-to-date collection of MCP servers in the market. This repository serves as a centralized hub, offering an extensive catalog of open-source and proprietary MCP servers, complete with features, documentation links, and contributors.

  • Mintplex-Labs
  • The all-in-one Desktop & Docker AI application with built-in RAG, AI agents, No-code agent builder, MCP compatibility, and more.

  • modelcontextprotocol
  • Model Context Protocol Servers

  • ShrimpingIt
  • Micropython I2C-based manipulation of the MCP series GPIO expander, derived from Adafruit_MCP230xx

  • n8n-io
  • Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

  • OffchainLabs
  • Go implementation of Ethereum proof of stake

  • WangRongsheng
  • 🧑‍🚀 全世界最好的LLM资料总结(Agent框架、辅助编程、数据处理、模型训练、模型推理、o1 模型、MCP、小语言模型、视觉语言模型) | Summary of the world's best LLM resources.

    Reviews

    3 (1)
    Avatar
    user_H1NJAWpF
    2025-04-17

    I've been using code-analyzer-server by vigourpt and it has significantly streamlined my code reviewing process. The server's performance is impressive and it integrates seamlessly with my development workflow. Highly recommend checking it out at https://github.com/vigourpt/code-analyzer-server for anyone in need of a reliable code analysis tool!