MCP server that exposes Pyright language server functionality
SaferSkills independently audited mcp-pyright (MCP Server) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
MCP server that exposes Pyright language server functionality
mcp-name: io.github.daedalus/mcp-pyright
pip install mcp-pyrightThe MCP server can be used with any MCP-compatible client. It exposes the following tools:
from mcp_pyright import mcp
# Run type checking
result = check_types(code="x: int = 'hello'")# Get type information at position
result = get_hover(code="x: int = 1", position=0)# Get code completions
result = get_completions(code="prin", position=4)# Find definition location
result = get_definition(code="def foo(): pass\nfoo()", position=15)# Find all references
result = find_references(code="x = 1\nx", position=5)# Get all symbols in document
result = get_document_symbols(code="class Foo: pass\ndef bar(): pass")# Format Python code
result = format_code(code="x=1\ny=2")git clone https://github.com/daedalus/mcp-pyright.git
cd mcp-pyright
pip install -e ".[test]"
# run tests
pytest
# format
ruff format src/ tests/
# lint
ruff check src/ tests/
# type check
mypy src/MIT
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.