/** * bhived_query Tool * * Searches bhived shared memory and returns ranked recommendations, * warnings, and disputed pairs — always via /v2/query, which splits * team-private and public results into separate sections. * * NOTE: No outputSchema is defined because the Bhived REST API * response shape varies (e.g. recommendation objects may omit fields * like `id` or `status` depending on the retrieval pipeline). The MCP * SDK validates structuredContent strictly against outputSchema, so a * mismatch causes a hard error. We rely on the text formatter instead. */ import type { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; export declare function registerQueryTool(server: McpServer): void; //# sourceMappingURL=query.d.ts.map