get_project
Retrieve detailed package information for a specific project from multiple repositories, including version data and distribution availability.
Instructions
Get detailed information about a specific project.
Args:
project_name: Exact name of the project to retrieve
repository: Optional repository filter to show only packages from that repository
Returns:
JSON formatted list of packages for the project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_name | Yes | ||
repository | No |
Input Schema (JSON Schema)
{
"properties": {
"project_name": {
"title": "Project Name",
"type": "string"
},
"repository": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Repository"
}
},
"required": [
"project_name"
],
"title": "get_projectArguments",
"type": "object"
}