Python language server for intelligent completions, linting, and type checking.
## Python LSP MCP Server: Intelligent Python Development The **Python LSP MCP Server** integrates pylsp with mypy, pylint, and other tools into Google Antigravity, providing comprehensive Python development support with type checking, linting, and intelligent completions. ### Why Python LSP MCP? Python powers everything from web apps to AI. The pylsp MCP provides: - **Type Checking**: mypy integration for type safety - **Linting**: pylint, flake8, ruff support - **Completions**: Jedi-powered intelligent suggestions - **Virtual Envs**: Full venv and conda support ### Key Features #### 1. Type Intelligence Modern Python typing: - Type hint support - Generic types - Protocol checking - TypedDict validation #### 2. Linting Multiple linter integration: - pylint rules - flake8 checks - ruff for speed - Custom configurations #### 3. Environment Support Python environment handling: - virtualenv detection - conda environments - pyenv integration - Poetry/PDM support ### Configuration ```json { "mcpServers": { "pylsp": { "command": "pylsp", "args": ["--mcp"], "env": { "VIRTUAL_ENV": ".venv" } } } } ``` The Python LSP MCP makes Python development in Google Antigravity powerful and Pythonic.
{
"mcpServers": {
"pylsp": {}
}
}