list_heroes
Display and filter available hero roles in 聚义厅MCP by category or data source to streamline AI persona selection for collaborative tasks.
Instructions
显示聚义厅中所有可用的英雄角色
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | 可选:按分类筛选英雄 | |
source | No | 可选:按数据源筛选英雄 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"category": {
"description": "可选:按分类筛选英雄",
"type": "string"
},
"source": {
"description": "可选:按数据源筛选英雄",
"enum": [
"local",
"remote",
"default"
],
"type": "string"
}
},
"type": "object"
}