loopctl-mcp-server 2.32.0 → 2.33.0
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/index.js +9 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -2585,7 +2585,11 @@ const TOOLS = [
|
|
|
2585
2585
|
"list mode or knowledge_stats. " +
|
|
2586
2586
|
"Pass story_id when working on a loopctl story so reads attribute correctly. " +
|
|
2587
2587
|
"When you knowledge_get a result and it carries `potential_conflicts`, resolve it if it's " +
|
|
2588
|
-
"material to your task (see knowledge_get / the conflict-resolution wiki playbook)."
|
|
2588
|
+
"material to your task (see knowledge_get / the conflict-resolution wiki playbook). " +
|
|
2589
|
+
"If semantic ranking is unavailable the search transparently degrades to keyword-only " +
|
|
2590
|
+
"(meta.fallback: true, meta.search_mode: 'keyword_only') and now reports meta.fallback_reason " +
|
|
2591
|
+
"— a stable tag naming WHY (e.g. no_embedding_key, embedding_circuit_open, " +
|
|
2592
|
+
"embedding_provider_error_<status>, embedding_timeout).",
|
|
2589
2593
|
inputSchema: {
|
|
2590
2594
|
type: "object",
|
|
2591
2595
|
properties: {
|
|
@@ -2674,7 +2678,10 @@ const TOOLS = [
|
|
|
2674
2678
|
"memory, scope to a memory_type/agent/conversation via the memory_types/agents/" +
|
|
2675
2679
|
"conversation_id filters (articles whose metadata carries those keys). NOTE (#163): for " +
|
|
2676
2680
|
"an agent key, another agent's private/owner memories are never returned (results AND " +
|
|
2677
|
-
"linked refs) regardless of the agents= filter — visibility is enforced, not advisory."
|
|
2681
|
+
"linked refs) regardless of the agents= filter — visibility is enforced, not advisory. " +
|
|
2682
|
+
"If semantic ranking is unavailable this degrades to keyword-only (meta.fallback: true) and " +
|
|
2683
|
+
"now reports meta.fallback_reason — a stable tag naming WHY (e.g. no_embedding_key, " +
|
|
2684
|
+
"embedding_circuit_open, embedding_provider_error_<status>, embedding_timeout).",
|
|
2678
2685
|
inputSchema: {
|
|
2679
2686
|
type: "object",
|
|
2680
2687
|
properties: {
|