scan_dependencies
Identify and extract project dependency details from pyproject.toml files. Provides JSON output with specifications and metadata, enabling accurate AI-assisted documentation and coding support.
Instructions
Scan project dependencies from pyproject.toml
Args: project_path: Path to project directory (defaults to current directory)
Returns: JSON with dependency specifications and project metadata
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_path | No |
Input Schema (JSON Schema)
{
"properties": {
"project_path": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Project Path"
}
},
"type": "object"
}