nodus_admin_queries
Access administrative query data from the NodusAI MCP server to manage and analyze prediction market information for Polymarket and Kalshi platforms.
Instructions
[ADMIN] Full query registry dump.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No |
Implementation Reference
- src/tools/index.js:214-217 (handler)The handler function for the 'nodus_admin_queries' tool, which retrieves a list of queries from the registry.
// ── 6. nodus_admin_queries ───────────────────────────────────────────────────── export async function nodusAdminQueries({ limit }) { return ok({ message: "NodusAI Query Registry", queries: getAllQueries(limit || 50) }); }