Search
Generated automatically at build time from the madtea repository - do not edit here. Source: docs/reference/search.md.
CLI Commands
madtea search issues
Search issues across the instance
| Flag | Type | Default | Description |
|---|---|---|---|
--label | stringSlice | [] | Label names (comma-separated or repeated) |
--limit | int | 0 | Maximum number of items to return (0 = server default) |
--owner | string | Filter by repository owner | |
--page | int | 0 | Page number for pagination (0 = first page) |
--state | string | Filter by state: open, closed, all |
madtea search prs
Search pull requests across the instance
| Flag | Type | Default | Description |
|---|---|---|---|
--label | stringSlice | [] | Label names (comma-separated or repeated) |
--limit | int | 0 | Maximum number of items to return (0 = server default) |
--owner | string | Filter by repository owner | |
--page | int | 0 | Page number for pagination (0 = first page) |
--state | string | Filter by state: open, closed, all |
madtea search repos
Search repositories across the instance
| Flag | Type | Default | Description |
|---|---|---|---|
--limit | int | 0 | Maximum number of results to return |
--order | string | Sort order: asc or desc | |
--page | int | 0 | Page number for pagination |
--sort | string | Sort field: alpha, created, updated, size, id, stars, forks |
madtea search users
Search users across the instance
| Flag | Type | Default | Description |
|---|---|---|---|
--limit | int | 0 | Maximum number of results to return |
--page | int | 0 | Page number for pagination |
MCP Tools
madt_search
Cross-resource search: repositories, users, issues, and pull requests.
Output schema: declared
One tool, action-dispatched. Set action to one of:
action="issues"
Search issues across all accessible repositories. Results are INSTANCE-WIDE: owner_repo only selects credentials in a multi-repo workspace and does NOT filter results. Narrow with owner=; for issues within one repo use madt_issues action=list.
Required: q
Optional: state, labels, owner, owner_repo, limit, page
action="prs"
Search pull requests across all accessible repositories. Results are INSTANCE-WIDE: owner_repo only selects credentials in a multi-repo workspace and does NOT filter results. Narrow with owner=; for PRs within one repo use madt_prs action=list.
Required: q
Optional: state, labels, owner, owner_repo, limit, page
action="repos"
Search repositories across the instance.
Required: q
Optional: sort, order, limit, page
action="users"
Search users by username or full name.
Required: q
Optional: limit, page
Canonical source: docs/reference/search.md in the madtea repo.