list-agents
Discover and filter available agents by category to identify the right roles for project tasks, ensuring optimal team composition and task alignment.
Instructions
List all available agents
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| category | No | Filter by category | |
| language | No | Language preference (en, ko) | en |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Filter by category",
"enum": [
"development",
"data",
"design",
"management",
"marketing",
"operations",
"hr",
"finance",
"legal",
"research",
"healthcare",
"education",
"media",
"manufacturing",
"other"
],
"type": "string"
},
"language": {
"default": "en",
"description": "Language preference (en, ko)",
"enum": [
"en",
"ko"
],
"type": "string"
}
},
"type": "object"
}