You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`namespace`| string | Yes | Namespace to query (must match a name from `list_namespaces`) |
247
-
|`user_query`| string | Yes | User’s question or intent (e.g. "list papers by Lakos with titles", "how many papers by Wong?") |
247
+
|`user_query`| string | Yes | User’s question or intent (e.g. "list papers by John Doe with titles", "how many papers by Wong?") |
248
248
249
249
**Returns:**`suggested_fields` (only fields that exist in that namespace), `use_count_tool`, `recommended_tool`, `explanation`, and `namespace_found`.
250
250
@@ -314,15 +314,15 @@ Rules:
314
314
315
315
### `count`
316
316
317
-
Returns the **unique document count** matching a metadata filter and semantic query. Use for questions like "how many papers by Lakos?" instead of the `query` tool. For performance, the count tool uses **semantic (dense) search only** (no hybrid or lexical) and requests only document identifiers (`document_number`, `url`, `doc_id`)—no chunk content—then deduplicates by document.
317
+
Returns the **unique document count** matching a metadata filter and semantic query. Use for questions like "how many papers by John Doe?" instead of the `query` tool. For performance, the count tool uses **semantic (dense) search only** (no hybrid or lexical) and requests only document identifiers (`document_number`, `url`, `doc_id`)—no chunk content—then deduplicates by document.
Copy file name to clipboardExpand all lines: src/server/tools/suggest-query-params-tool.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ export function registerSuggestQueryParamsTool(server: McpServer): void {
25
25
user_query: z
26
26
.string()
27
27
.describe(
28
-
'The user\'s natural language question or intent (e.g. "list papers by Lakos with titles and links", "how many papers by Wong?", "what do the contracts papers say?").'
28
+
'The user\'s natural language question or intent (e.g. "list papers by John Doe with titles and links", "how many papers by Wong?", "what do the contracts papers say?").'
0 commit comments