nodus_admin_stats
Monitor platform usage statistics including total queries and breakdown by platform for administrative oversight.
Instructions
[ADMIN] Platform stats: total queries, breakdown by platform.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/index.js:210-212 (handler)The implementation of the nodus_admin_stats tool.
export async function nodusAdminStats() { return ok({ message: "NodusAI Platform — Registry Stats", ...getStats() }); } - src/index.js:102-105 (registration)The tool definition and schema registration for nodus_admin_stats.
name: "nodus_admin_stats", description: "[ADMIN] Platform stats: total queries, breakdown by platform.", inputSchema: { type: "object", properties: {} }, }, - src/index.js:121-121 (registration)Mapping the tool name to its handler implementation in HANDLERS object.
nodus_admin_stats: nodusAdminStats,