🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@paretools/python

Package Overview
Dependencies
Maintainers
1
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@paretools/python

MCP server for Python tools (pip, mypy, ruff) with structured, token-efficient output

Source
npmnpm
Version
0.3.0
Version published
Weekly downloads
114
-64.81%
Maintainers
1
Weekly downloads
 
Created
Source

@paretools/python

Pare MCP server for Python tools. Returns structured output from pip, mypy, ruff, and pip-audit.

Tools

ToolDescription
pip-installInstall packages, returns summary of installed items
mypyType-check diagnostics (file, line, severity, message)
ruff-checkLint diagnostics (file, line, code, message)
pip-auditVulnerability report for installed packages

Setup

{
  "mcpServers": {
    "pare-python": {
      "command": "npx",
      "args": ["@paretools/python"]
    }
  }
}

Example

mypy output:

{
  "success": false,
  "errors": [
    {
      "file": "app/main.py",
      "line": 15,
      "severity": "error",
      "message": "Argument 1 to \"process\" has incompatible type \"str\"; expected \"int\"",
      "code": "arg-type"
    }
  ],
  "errorCount": 1,
  "warningCount": 0,
  "noteCount": 0
}
  • Pare monorepo
  • MCP protocol

License

MIT

Keywords

mcp

FAQs

Package last updated on 10 Feb 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts