Back to directory
Anselmoo avatar
Anselmoo / mcp-server-analyzer

mcp-server-analyzer

MCP server for Python code analysis with RUFF linting and VULTURE dead code detection

11

Stars

3

Forks

0

Watchers

MIT

License

MCP Server Analyzer for Python ๐Ÿ๐Ÿ”

SafeSkill 92/100

CI/CD Pipeline PyPI version Python 3.13+ Docker License: MIT Code Coverage AgentSeal MCP Docs

A powerful Model Context Protocol (MCP) server that provides comprehensive Python code analysis using Ruff for linting, ty for type checking, and Vulture for dead code detection. Perfect for AI assistants, IDEs, and automated code review workflows.

๐Ÿš€ Quick Start

VS Code Integration (One-Click Install)

For quick installation, use one of the one-click install buttons below...

Install with UV in VS Code Install with UV in VS Code Insiders

Install with Docker in VS Code Install with Docker in VS Code Insiders

For manual installation, add the following JSON block to your User Settings (JSON) file in VS Code. You can do this by pressing Ctrl + Shift + P and typing Preferences: Open User Settings (JSON).

Optionally, you can add it to a file called .vscode/mcp.json in your workspace. This will allow you to share the configuration with others.

Note that the mcp key is needed when using the mcp.json file.

Using uvx (recommended):

{
  "mcp": {
    "servers": {
      "analyzer": {
        "command": "uvx",
        "args": ["mcp-server-analyzer"]
      }
    }
  }
}

Using Docker:

{
  "mcp": {
    "servers": {
      "analyzer": {
        "command": "docker",
        "args": ["run", "-i", "--rm", "ghcr.io/anselmoo/mcp-server-analyzer"]
      }
    }
  }
}

Universal Installation

# Install with uvx (recommended)
uvx install mcp-server-analyzer

# Install with pip
pip install mcp-server-analyzer

# Run with Docker
docker run ghcr.io/anselmoo/mcp-server-analyzer:latest

# Install from source
git clone https://github.com/anselmoo/mcp-server-analyzer.git
cd mcp-server-analyzer
uv sync --dev
uv run mcp-server-analyzer

๐Ÿ“‹ Features

  • ๐Ÿ” RUFF Analysis: Comprehensive Python linting with auto-fixes
  • ๐Ÿง  ty Type Checking: Fast Python type analysis with rule-based diagnostics
  • ๐Ÿงน Dead Code Detection: Find unused imports, functions, and variables with VULTURE
  • โšก Biome JS/TS Analysis: Fast linting and formatting for JavaScript and TypeScript
  • ๐Ÿ“Š Quality Scoring: Combined analysis with quality metrics
  • ๐Ÿš€ FastMCP Framework: High-performance MCP server implementation
  • ๐Ÿณ Docker Ready: Multi-architecture containers with security signing
  • ๐Ÿ”’ Secure: All releases signed with Sigstore for supply chain security

๐Ÿ“ˆ Analysis Examples

RUFF Linting Preview

See comprehensive linting analysis examples: ๐Ÿ“‹ RUFF Analysis Preview

VULTURE Dead Code Detection Preview

Explore dead code detection capabilities: ๐Ÿงน VULTURE Analysis Preview

๐Ÿ› ๏ธ Available Tools

Tool Description Use Case
ruff-check Lint Python code with RUFF Style violations, potential errors
ruff-format Format Python code with RUFF Code formatting and consistency
ruff-check-ci CI/CD optimized RUFF output GitHub Actions, GitLab CI
ty-check Type-check Python code with ty Type safety, incorrect return values
vulture-scan Dead code detection Unused imports, functions, variables
biome-check Lint JS/TS code with Biome Style violations, potential errors
biome-format Format JS/TS code with Biome Code formatting and consistency
analyze-code Combined Ruff + ty + Vulture analysis Complete code quality assessment

๐Ÿ”ง Configuration

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "analyzer": {
      "command": "uvx",
      "args": ["mcp-server-analyzer"]
    }
  }
}

Zed

Add to your Zed settings.json:

"context_servers": {
  "analyzer": {
    "command": "uvx",
    "args": ["mcp-server-analyzer"]
  }
}

Claude Code (project-level)

Place .mcp.json at your project root:

{
  "mcpServers": {
    "analyzer": {
      "command": "uvx",
      "args": ["mcp-server-analyzer"]
    }
  }
}

๐Ÿงช Development

Prerequisites

  • Python 3.13+
  • uv (recommended) or pip
  • Node.js 22+ (for Biome JS/TS analysis)
  • Docker (optional)

Setup

# Clone repository
git clone https://github.com/anselmoo/mcp-server-analyzer.git
cd mcp-server-analyzer

# Install Python dependencies
uv sync --dev

# Install Biome (JS/TS analyzer)
npm ci

# Run tests
uv run pytest

# Run type checks
uv run ty check src tests

# Run pre-commit hooks
uv tool run pre-commit run --all-files

# Build Docker image
docker build -t mcp-server-analyzer .

Testing

# Run all tests
uv run pytest tests/ -v

# Run with coverage
uv run pytest --cov=src/mcp_server_analyzer --cov-report=html

# Test specific functionality
uv run pytest tests/test_server.py::TestAnalyzers::test_ruff_with_sample_code

๐Ÿ“Š Quality Metrics

The server provides quality scoring based on:

  • Ruff Issues: Style violations, potential bugs, complexity metrics
  • ty Diagnostics: Static typing errors and warnings
  • Dead Code Detection: Unused imports, functions, variables
  • Combined Score: Weighted quality assessment (0-100)

๐Ÿ”’ Security

  • Signed Releases: All releases signed with Sigstore
  • Container Signing: Docker images signed with Cosign
  • Trusted Publishing: PyPI releases use GitHub OIDC trusted publishing
  • Vulnerability Scanning: Automated security scanning in CI/CD
  • Supply Chain Security: SLSA Build Level 3 compliance
  • Security Policy: See SECURITY.md for vulnerability reporting

๐Ÿ” Data Handling & Transparency

  • In-memory only: Code passed to tools is written to a temporary file, analyzed, and the file is deleted immediately โ€” nothing is persisted between calls.
  • No network calls: The server makes no outbound network connections during analysis.
  • No telemetry: No usage data, analytics, or crash reports are collected.
  • Subprocess isolation: ruff, ty, and vulture are invoked with fixed argument lists โ€” no shell expansion or arbitrary command execution.

๐Ÿ“š Documentation

๐Ÿค Contributing

Contributions are welcome! Please see CONTRIBUTING.md for details.

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes using Conventional Commits
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

๐Ÿ“ License

This project is licensed under the MIT License - see the LICENSE file for details.

๐Ÿ™ Acknowledgments


Made with โค๏ธ for better Python code quality

Releases

Jul 1, 2026

Release v0.3.0

Download .zip

What's Changed

feat: add Biome JS/TS analyzer + CI/CD hardening (Issues #7, #18) by @Anselmoo in #24 docs: add Biome and repo-release-tools to pre-commit, update docs by @Anselmoo in #26 chore: bump...

Jun 22, 2026

Release v0.2.2

Download .zip

What's Changed

feat: add .mcpb DXT v0.4 bundle build and GitHub Release attachment by @Anselmoo in #20 chore: switch build-mcpb CI job to mcp2mcpb --from-dist (v0.5) by @Anselmoo in #21 chore: bump v...

May 24, 2026

Release v0.2.1

Download .zip

What's Changed

Refactor analyzers and enhance error handling by @Anselmoo in #15 fix: update release process to handle existing releases and sign artifacts by @Anselmoo in #16 chore: bump version to...

May 24, 2026

Download .zip

What's Changed

feat: Add ty type checker integration and related tests by @Anselmoo in #13 feat: fast mcp 2.0.0 by @Anselmoo in #14

Full Changelog: v0.1.2...v0.2.0

Apr 25, 2026

Release v0.1.2

Download .zip

MCP Python Analyzer 0.1.2 ๐Ÿš€ What's New

Automated release from tag v0.1.2

๐Ÿ“ฆ Installation

Install via pip

pip install mcp-server-analyzer==0.1.2

Install via uvx

uvx install mcp-server-analyzer=...