wemake-python-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@wemake-python-mcpWhat does the WPS432 rule check?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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 executeflake8 --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 (
WPS000–WPS699).Live Scraper & Updater: Scrapes official documentation to keep rule definitions and links up to date.
FastMCP Protocol Support: Implements tools and resources via standard
stdiotransport.
Related MCP server: mcp-lint-tools
Prerequisites
Python 3.10+
wemake-python-styleguide(installed in target project virtual environment or system environment)uv(recommended) orpip
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 stdioCheck version:
wemake-python-mcp --versionClaude 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 |
|
| Lints a single |
|
| Recursively lints a Python project directory. |
|
| Lints a raw Python code string snippet. |
|
| Returns documentation, title, category, and URL for a rule (e.g. |
| 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 |
|
| Categorized index of all WPS rule codes and titles. |
|
| Full Markdown documentation for a specific rule (e.g., |
|
| Recommended |
Environment Variables
WPS_FLAKE8_PATH: Explicit path toflake8executable. 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=WPSMaintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityAmaintenanceAn MCP server that performs comprehensive Python code analysis using Ruff, ty, and Vulture for linting, type checking, and dead code detection.811MIT
- Alicense-qualityDmaintenanceCode linting and style checking tools for AI agents, exposed as an MCP server. Supports style checks, naming conventions, complexity analysis, dead code detection, and import analysis.37MIT
- AlicenseBqualityDmaintenanceAn MCP server that integrates Ruff linting, formatting, and code analysis tools with advanced logging and configuration options for AI coding assistants.41MIT

ocentra-enforcerofficial
Alicense-qualityBmaintenanceMCP server for enforcing coding rules in Rust projects via scanning, routing, and explanation tools, designed for use with Codex, CI pipelines, and precommit hooks.MIT
Related MCP Connectors
Official MCP server for Qase — manage test cases, runs, suites, defects via AI tools.
Free MCP tools: the only MCP linter, health checks, cost estimation, and trust evaluation.
MCP server for generating rough-draft project plans from natural-language prompts.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/guff192/wemake-python-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server