list_user_packages
Retrieve and filter packages by type, visibility, and pagination for a specified user on the MCP GitHub server to manage and track software dependencies effectively.
Instructions
List packages for a user
Input Schema
Name | Required | Description | Default |
---|---|---|---|
package_type | No | The type of package to filter for | |
page | No | Page number of the results | |
per_page | No | Results per page (max 100) | |
username | Yes | Username | |
visibility | No | The visibility to filter for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"package_type": {
"description": "The type of package to filter for",
"enum": [
"npm",
"maven",
"rubygems",
"docker",
"nuget",
"container"
],
"type": "string"
},
"page": {
"description": "Page number of the results",
"type": "number"
},
"per_page": {
"description": "Results per page (max 100)",
"type": "number"
},
"username": {
"description": "Username",
"type": "string"
},
"visibility": {
"description": "The visibility to filter for",
"enum": [
"public",
"private",
"internal"
],
"type": "string"
}
},
"required": [
"username"
],
"type": "object"
}