/** * Tool count — declared in ONE place, used everywhere. * * Three different figures used to circulate (docs, code, homepage). The number * below is the measured one: every tool registration in src/. * `test/tool-count.test.mjs` re-counts the registrations and fails if this file * drifts, so the constant cannot silently go stale. * * Anything that needs to state how many tools this MCP has — the server * description, zpl_about, the README, package.json — must take the number from * here rather than typing it again. */ /** Tools actually registered on the MCP server (includes the aliases). */ export declare const REGISTERED_TOOL_COUNT = 69; /** Backwards-compat aliases that reuse another tool's handler. */ export declare const ALIAS_TOOL_COUNT = 4; /** Distinct tools once the aliases are discounted. */ export declare const UNIQUE_TOOL_COUNT: number; /** Ready-made phrase, so the wording stays identical everywhere. */ export declare const TOOL_COUNT_PHRASE = "69 tools (65 unique + 4 backwards-compat aliases)";