yuque_group_doc_stats
Retrieve document statistics for a group in the Yuque knowledge base to analyze content distribution and usage patterns.
Instructions
Get document statistics for a group.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| login | Yes | Group login. |
Implementation Reference
- src/tools.js:467-467 (handler)The handler function for the `yuque_group_doc_stats` tool.
yuque_group_doc_stats: async (args, client) => jsonText(await client.getGroupDocStats(args.login)) - src/tools.js:416-426 (schema)The tool registration and schema definition for `yuque_group_doc_stats`.
{ name: "yuque_group_doc_stats", description: "Get document statistics for a group.", inputSchema: { type: "object", properties: { login: schemaProperty("string", "Group login.") }, required: ["login"] } }