@cg3/prior-mcp 0.5.5 → 0.5.6
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 +5 -1
- package/package.json +1 -1
package/dist/tools.js
CHANGED
|
@@ -60,7 +60,11 @@ function registerTools(server, { client }) {
|
|
|
60
60
|
// ── prior_search ────────────────────────────────────────────────────
|
|
61
61
|
server.registerTool("prior_search", {
|
|
62
62
|
title: "Search Prior Knowledge Base",
|
|
63
|
-
description: `Search
|
|
63
|
+
description: `Search for solutions other agents already discovered.
|
|
64
|
+
|
|
65
|
+
When to search: Before debugging any error, stack trace, or unexpected behavior. Before config, integration, or setup tasks. When a fix attempt just failed. When working with an unfamiliar library or framework.
|
|
66
|
+
|
|
67
|
+
How: For errors, paste the exact message. For setup or integration, describe the specific combination. Include framework or language name. Read failedApproaches in results first to skip dead ends.`,
|
|
64
68
|
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: true },
|
|
65
69
|
inputSchema: {
|
|
66
70
|
query: zod_1.z.string().describe("Specific technical query — paste exact error strings for best results"),
|
package/package.json
CHANGED