@nbiish/cognitive-tools-mcp 0.9.6 → 0.9.8

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/README.md CHANGED
@@ -26,7 +26,7 @@ Known as:
26
26
 
27
27
  Both packages are maintained in parallel and receive the same updates. You can use either package name in your projects - they provide identical functionality.
28
28
 
29
- **See the latest integration details in [`integration-prompts/new-prompts/latest.md`](integration-prompts/new-prompts/latest.md).**
29
+ **See the latest integration details in [`latest.md`](latest.md).**
30
30
 
31
31
  ## Features
32
32
 
package/build/index.js CHANGED
@@ -3,7 +3,7 @@
3
3
  * -----------------------------------------------------------------------------
4
4
  * Gikendaasowin Aabajichiganan - Core Cognitive Tools MCP Server
5
5
  *
6
- * Version: 0.9.6
6
+ * Version: 0.9.8
7
7
  *
8
8
  * Description: Provides a suite of cognitive tools for an AI Pair Programmer,
9
9
  * enabling structured reasoning, planning, analysis, and iterative
@@ -36,12 +36,12 @@
36
36
  import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
37
37
  import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
38
38
  import { z } from "zod";
39
- export const version = "0.9.6";
39
+ export const version = "0.9.8";
40
40
  // --- Server Definition ---
41
41
  const server = new McpServer({
42
42
  name: "gikendaasowin-aabajichiganan-mcp",
43
43
  version: version,
44
- description: "ᑭᑫᓐᑖᓱᐎᓐ ᐋᐸᒋᒋᑲᓇᓐ - Core Cognitive Tools Suite v0.9.6: Enables structured, iterative reasoning (Chain of Thought/Draft), planning, and analysis for AI agents, focusing on the cognitive loop. MANDATORY `think` step integrates results."
44
+ description: "ᑭᑫᓐᑖᓱᐎᓐ ᐋᐸᒋᒋᑲᓇᓐ - Core Cognitive Tools Suite v0.9.8: Enables structured, iterative reasoning (Chain of Thought/Draft), planning, and analysis for AI agents, focusing on the cognitive loop. MANDATORY `think` step integrates results."
45
45
  });
46
46
  // --- Logging Helpers ---
47
47
  /**
@@ -115,12 +115,11 @@ server.tool("assess_cuc_n_mode", "**Mandatory Pre-Deliberation Assessment.** Eva
115
115
  throw new Error('Invalid assessment: String must include explicit "Selected Mode: think" or "Selected Mode: quick_think".');
116
116
  }
117
117
  const selectedMode = modeMatch[1].toLowerCase();
118
- logToolResult(toolName, true, `Selected mode: ${selectedMode} - Returning original assessment + reminder.`);
118
+ logToolResult(toolName, true, `Selected mode: ${selectedMode} - Returning original assessment.`);
119
119
  // Log the full assessment server-side for traceability
120
120
  console.error(`[${new Date().toISOString()}] [MCP Server] - ${toolName} Assessment Details:\n${assessment_and_choice}`);
121
- // New logic: Return original input + reminder
122
- const reminder = "\n\n---\nSchema Reminder: Ensure assessment includes: 1) Situation Description, 2) CUC-N Ratings:, 3) Rationale for ratings, 4) Recommended Initial Strategy:, 5) Selected Mode: think/quick_think.";
123
- return { content: [{ type: "text", text: assessment_and_choice + reminder }] };
121
+ // Return original input string without reminder
122
+ return { content: [{ type: "text", text: assessment_and_choice }] };
124
123
  }
125
124
  catch (error) {
126
125
  return logToolError(toolName, error);
@@ -381,7 +380,7 @@ async function main() {
381
380
  await server.connect(transport);
382
381
  const border = '-----------------------------------------------------';
383
382
  console.error(border);
384
- console.error(` ᑭᑫᓐᑖᓱᐎᓐ ᐋᐸᒋᒋᑲᓇᓐ - Core Cognitive Tools Suite v0.9.6: Enables structured, iterative reasoning (Chain of Thought/Draft), planning, and analysis for AI agents, focusing on the cognitive loop. MANDATORY \`think\` step integrates results.`);
383
+ console.error(` ᑭᑫᓐᑖᓱᐎᓐ ᐋᐸᒋᒋᑲᓇᓐ - Core Cognitive Tools Suite v0.9.8: Enables structured, iterative reasoning (Chain of Thought/Draft), planning, and analysis for AI agents, focusing on the cognitive loop. MANDATORY \`think\` step integrates results.`);
385
384
  console.error(` Version: ${version}`);
386
385
  console.error(' Status: Running on stdio, awaiting MCP requests...');
387
386
  console.error(border);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nbiish/cognitive-tools-mcp",
3
- "version": "0.9.6",
3
+ "version": "0.9.8",
4
4
  "description": "Cognitive Tools MCP: SOTA reasoning suite focused on iterative refinement and tool integration for AI Pair Programming. Enables structured, iterative problem-solving through Chain of Draft methodology, with tools for draft generation, analysis, and refinement. Features advanced deliberation (`think`), rapid checks (`quick_think`), mandatory complexity assessment & thought mode selection (`assess_cuc_n_mode`), context synthesis, confidence gauging, proactive planning, explicit reasoning (CoT), and reflection with content return. Alternative package name for gikendaasowin-aabajichiganan-mcp.",
5
5
  "private": false,
6
6
  "type": "module",