yuque_group_stats
Retrieve comprehensive statistics for a Yuque knowledge base group to analyze content metrics and group activity.
Instructions
Get overall statistics for a group.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| login | Yes | Group login. |
Implementation Reference
- src/tools.js:464-464 (handler)The handler function for the `yuque_group_stats` tool.
yuque_group_stats: async (args, client) => jsonText(await client.getGroupStats(args.login)), - src/tools.js:383-393 (schema)The schema definition for the `yuque_group_stats` tool.
{ name: "yuque_group_stats", description: "Get overall statistics for a group.", inputSchema: { type: "object", properties: { login: schemaProperty("string", "Group login.") }, required: ["login"] } },