yuque_group_member_stats
Retrieve member statistics for a Yuque group to analyze participation and manage team collaboration within the knowledge base.
Instructions
Get member statistics for a group.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| login | Yes | Group login. |
Implementation Reference
- src/tools.js:465-465 (handler)The implementation of the 'yuque_group_member_stats' tool handler.
yuque_group_member_stats: async (args, client) => jsonText(await client.getGroupMemberStats(args.login)), - src/tools.js:394-404 (schema)The registration and input schema definition for the 'yuque_group_member_stats' tool.
{ name: "yuque_group_member_stats", description: "Get member statistics for a group.", inputSchema: { type: "object", properties: { login: schemaProperty("string", "Group login.") }, required: ["login"] } },