https://github.com/sammcj/mcp-package-version

check_pyproject_versions

Check latest stable versions for Python packages in pyproject.toml

Input Schema

NameRequiredDescriptionDefault
dependenciesYesDependencies object from pyproject.toml

Input Schema (JSON Schema)

{ "properties": { "dependencies": { "description": "Dependencies object from pyproject.toml", "properties": { "dependencies": { "additionalProperties": { "type": "string" }, "description": "Project dependencies from pyproject.toml", "type": "object" }, "dev-dependencies": { "additionalProperties": { "type": "string" }, "description": "Development dependencies from pyproject.toml", "type": "object" }, "optional-dependencies": { "additionalProperties": { "additionalProperties": { "type": "string" }, "type": "object" }, "description": "Optional dependencies from pyproject.toml", "type": "object" } }, "type": "object" } }, "required": [ "dependencies" ], "type": "object" }