yuque_list_group_members
Retrieve all members of a Yuque group or team to manage access permissions and collaboration within knowledge bases.
Instructions
List all members of a group or team.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| login | Yes | Group login. |
Implementation Reference
- src/tools.js:458-458 (handler)The handler function for the yuque_list_group_members tool.
yuque_list_group_members: async (args, client) => jsonText(await client.listGroupMembers(args.login)), - src/tools.js:347-357 (schema)The schema registration for the yuque_list_group_members tool.
{ name: "yuque_list_group_members", description: "List all members of a group or team.", inputSchema: { type: "object", properties: { login: schemaProperty("string", "Group login.") }, required: ["login"] } },