list_org_packages
Retrieve and filter packages by type and visibility for a specific GitHub organization using mcp-github, with options for pagination and organization name input.
Instructions
List packages for an organization
Input Schema
Name | Required | Description | Default |
---|---|---|---|
org | Yes | Organization name | |
package_type | Yes | The type of package to filter for | |
page | No | Page number of the results | |
per_page | No | Results per page (max 100, default 30) | |
visibility | No | The visibility to filter for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"org": {
"description": "Organization name",
"type": "string"
},
"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, default 30)",
"type": "number"
},
"visibility": {
"description": "The visibility to filter for",
"enum": [
"public",
"private",
"internal"
],
"type": "string"
}
},
"required": [
"org",
"package_type"
],
"type": "object"
}