search_heroes
Find and match hero characters by keyword, enabling quick identification of relevant personas within the MCP server for collaboration and analysis.
Instructions
根据关键词搜索匹配的英雄角色
Input Schema
Name | Required | Description | Default |
---|---|---|---|
keyword | Yes | 搜索关键词,可以是英雄名称或描述中的词语 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"keyword": {
"description": "搜索关键词,可以是英雄名称或描述中的词语",
"type": "string"
}
},
"required": [
"keyword"
],
"type": "object"
}