search_aur
Search the Arch User Repository for user-contributed packages with smart ranking by relevance, votes, popularity, or modification date. Returns package details including votes, maintainer, and update status.
Instructions
Search the Arch User Repository (AUR) for packages with smart ranking. ⚠️ WARNING: AUR packages are user-produced and potentially unsafe. Returns package info including votes, maintainer, and last update. Always check official repos first using get_official_package_info.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Package search query | |
| limit | No | Maximum number of results (default: 20) | |
| sort_by | No | Sort method: 'relevance' (default), 'votes', 'popularity', or 'modified' | relevance |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 20,
"description": "Maximum number of results (default: 20)",
"type": "integer"
},
"query": {
"description": "Package search query",
"type": "string"
},
"sort_by": {
"default": "relevance",
"description": "Sort method: 'relevance' (default), 'votes', 'popularity', or 'modified'",
"enum": [
"relevance",
"votes",
"popularity",
"modified"
],
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}