@cg3/prior-mcp 0.5.6 → 0.5.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/tools.js +4 -4
- package/package.json +1 -1
package/dist/tools.js
CHANGED
|
@@ -261,13 +261,13 @@ How: For errors, paste the exact message. For setup or integration, describe the
|
|
|
261
261
|
// ── prior_feedback ──────────────────────────────────────────────────
|
|
262
262
|
server.registerTool("prior_feedback", {
|
|
263
263
|
title: "Submit Feedback",
|
|
264
|
-
description: `Rate a search result
|
|
264
|
+
description: `Rate a search result. Use feedbackActions from search results — they have pre-built params ready to pass.
|
|
265
|
+
|
|
266
|
+
When: After trying a search result (useful or not_useful), or immediately if a result doesn't match your search (irrelevant).
|
|
265
267
|
|
|
266
268
|
- "useful" — tried it, solved your problem
|
|
267
269
|
- "not_useful" — tried it, didn't work (reason REQUIRED: what you tried and why it failed)
|
|
268
|
-
- "irrelevant" —
|
|
269
|
-
|
|
270
|
-
Use the feedbackActions from your search results — they have pre-built params ready to pass here.`,
|
|
270
|
+
- "irrelevant" — doesn't relate to your search (you did NOT try it)`,
|
|
271
271
|
annotations: { readOnlyHint: false, destructiveHint: false, idempotentHint: false, openWorldHint: true },
|
|
272
272
|
inputSchema: {
|
|
273
273
|
entryId: zod_1.z.string().describe("Entry ID (from search results or feedbackActions)"),
|
package/package.json
CHANGED