wemake-python-mcp

wemake-python-mcp

MCP server providing automated code linting, rule explanations, and configuration templates for wemake-python-styleguide, with structured violation reports and offline rule database.

Category
Visit Server

README

wemake-python-mcp

Model Context Protocol (MCP) server providing automated code linting, rule explanations, and configuration templates for wemake-python-styleguide (WPS).


Features

  • Automatic Venv Resolution: Automatically detects project virtualenvs (.venv, venv, uv) to execute flake8 --select=WPS.
  • Structured Violation Output: Returns JSON violation reports with file, line, column, rule code, title, category, and message.
  • Offline WPS Rule Database: Bundled offline lookup database covering all 263 WPS rules (WPS000WPS699).
  • Live Scraper & Updater: Scrapes official documentation to keep rule definitions and links up to date.
  • FastMCP Protocol Support: Implements tools and resources via standard stdio transport.

Prerequisites

  • Python 3.10+
  • wemake-python-styleguide (installed in target project virtual environment or system environment)
  • uv (recommended) or pip

Installation

Using uv (Recommended)

Clone the repository and install dependencies into a local virtualenv:

git clone https://github.com/your-org/wemake-python-mcp.git
cd wemake-python-mcp
uv venv
uv pip install -e .

Using pip

pip install -e .

Usage & MCP Client Configuration

CLI Usage

Run the server over stdio transport:

wemake-python-mcp --transport stdio

Check version:

wemake-python-mcp --version

Claude Desktop / Cursor / MCP Client Configuration

Add the following to your MCP client configuration file (e.g., claude_desktop_config.json):

Using uv (Recommended)

{
  "mcpServers": {
    "wemake-python": {
      "command": "uv",
      "args": [
        "--directory",
        "/absolute/path/to/wemake-python-mcp",
        "run",
        "wemake-python-mcp"
      ]
    }
  }
}

Direct Executable

{
  "mcpServers": {
    "wemake-python": {
      "command": "/absolute/path/to/wemake-python-mcp/.venv/bin/wemake-python-mcp",
      "args": []
    }
  }
}

Tools Reference

Tool Name Parameters Description
lint_file path: str Lints a single .py file using wemake-python-styleguide rules.
lint_project directory: str = "." Recursively lints a Python project directory.
lint_code code: str Lints a raw Python code string snippet.
explain_rule code: str Returns documentation, title, category, and URL for a rule (e.g. WPS432 or 432).
update_rule_db None Scrapes official readthedocs documentation and updates the local rule database.

Sample Tool Output (lint_file / lint_code)

{
  "success": false,
  "violation_count": 1,
  "violations": [
    {
      "file": "example.py",
      "line": 1,
      "column": 5,
      "code": "WPS432",
      "title": "Forbid magic numbers",
      "category": "Best practices",
      "message": "Found magic number: 42"
    }
  ],
  "summary": "Found 1 wemake-python-styleguide violation across 1 file."
}

Resources Reference

Resource URI Mime Type Description
wemake://rules application/json Categorized index of all WPS rule codes and titles.
wemake://rules/{code} text/markdown Full Markdown documentation for a specific rule (e.g., wemake://rules/WPS432).
wemake://config/template text/plain Recommended setup.cfg configuration template for wemake-python-styleguide.

Environment Variables

  • WPS_FLAKE8_PATH: Explicit path to flake8 executable. Overrides auto-detection logic.

Development & Testing

Run tests and type checks:

# Run unit tests
uv run pytest

# Type check
uv run mypy src/ tests/

# Ruff linting
uv run ruff check src/ tests/ scripts/

# WPS styleguide compliance check
uv run flake8 src/ tests/ --select=WPS

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
E2B

E2B

Using MCP to run code via e2b.

Official
Featured