pypi-lookup
Retrieve Python package metadata from PyPI, including version, license, and Python compatibility. Use to evaluate library maintenance and compatibility before integration.
Instructions
Python package metadata from PyPI. Returns latest version, summary, author, license, Python version requirement, install dependencies, release date, and download URLs. Also supports fetching a specific version. Use before integrating a Python library: check if it's actively maintained, what license it uses, and whether it's compatible with your Python version. Free upstream: PyPI JSON API (no key, no rate limit for normal use).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| package | No | PyPI package name (e.g. 'requests', 'numpy', 'anthropic', 'langchain'). Case-insensitive. | |
| version | No | Specific version to look up (e.g. '2.31.0'). If omitted, returns the latest stable release. |