Server data from the Official MCP Registry
MCP server that exposes Pyright language server functionality
MCP server that exposes Pyright language server functionality
Valid MCP server (4 strong, 4 medium validity signals). 5 known CVEs in dependencies (1 critical, 3 high severity) Package registry verified. Imported from the Official MCP Registry.
8 files analyzed · 6 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-daedalus-mcp-pyright": {
"args": [
"mcp-pyright"
],
"command": "uvx"
}
}
}From the project's GitHub README.
MCP server that exposes Pyright language server functionality
mcp-name: io.github.daedalus/mcp-pyright
pip install mcp-pyright
The 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
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.