@nbiish/cognitive-tools-mcp 4.0.11 → 4.0.14
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 +2 -1
- package/build/index.js +15 -11
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -53,7 +53,7 @@ This project is licensed under the [COMPREHENSIVE RESTRICTED USE LICENSE FOR IND
|
|
|
53
53
|
◈──◆──◇─────────────────────────────────────────────────◇──◆──◈
|
|
54
54
|
</div>
|
|
55
55
|
|
|
56
|
-
|
|
56
|
+
MCP server exposing a single tool `deliberate` with stages `orient`, `reason`, and `acknowledge`. The server returns your markdown verbatim to help you structure thinking and keep an audit trail. *(Operational guidelines in [`latest.md`](latest.md) are covered by the [project LICENSE](LICENSE).)*
|
|
57
57
|
|
|
58
58
|
Known as:
|
|
59
59
|
- Anishinaabemowin: [`@nbiish/gikendaasowin-aabajichiganan-mcp`](https://www.npmjs.com/package/@nbiish/gikendaasowin-aabajichiganan-mcp)
|
|
@@ -62,6 +62,7 @@ Known as:
|
|
|
62
62
|
Both packages are maintained in parallel and receive the same updates. You can use either package name in your projects - they provide identical functionality.
|
|
63
63
|
|
|
64
64
|
**◇ Recent Updates ◇**
|
|
65
|
+
- **◇ v4.0.12 ◇** Synchronized all package versions to 4.0.12, updated in-file version documentation, and rebuilt the project to ensure all changes are consistently applied.
|
|
65
66
|
- **◇ v4.0.10 ◇** 🚀 ENHANCED COGNITIVE AMPLIFICATION: Redesigned tool descriptions to dramatically encourage frequent usage and integration with other MCP tools. Added compelling performance benefits, visual indicators, and strategic positioning to make the deliberation tool more attractive for consistent LLM usage. Updated all package descriptions and version synchronization.
|
|
66
67
|
- **◇ v4.0.7 ◇** Enhanced context engineering with strategic context building for user request resolution - updated 'deliberate' tool to emphasize information ecosystem design and dynamic context assembly based on 2025 research findings.
|
|
67
68
|
- **◇ v4.0.4 ◇** Enhanced 'deliberate' tool with insights from latest research on context engineering for more robust AI agent performance and updated documentation to reflect Gikendaasowin v8 guidelines.
|
package/build/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
/**
|
|
3
3
|
* -----------------------------------------------------------------------------
|
|
4
|
-
* Gikendaasowin Aabajichiganan - Advanced Agentic Cognitive Orchestration MCP Server (v4.0.
|
|
4
|
+
* Gikendaasowin Aabajichiganan - Advanced Agentic Cognitive Orchestration MCP Server (v4.0.12)
|
|
5
5
|
*
|
|
6
6
|
* Description: Provides cognitive tools implementing the Gikendaasowin v8
|
|
7
7
|
* Agentic Operational Guidelines. Enforces a mandatory structured
|
|
@@ -27,8 +27,8 @@ import { z } from "zod";
|
|
|
27
27
|
// --- Server Definition ---
|
|
28
28
|
const serverInfo = {
|
|
29
29
|
name: "gikendaasowin-aabajichiganan-mcp",
|
|
30
|
-
version: "4.0.
|
|
31
|
-
description:
|
|
30
|
+
version: "4.0.12",
|
|
31
|
+
description: "Deliberation MCP server exposing a single tool `deliberate` with stages: orient | reason | acknowledge. Returns your markdown verbatim to support structured thinking."
|
|
32
32
|
};
|
|
33
33
|
const server = new McpServer(serverInfo);
|
|
34
34
|
// --- Logging Helpers (Internal - No changes needed as per user comments) ---
|
|
@@ -130,8 +130,12 @@ function logToolError(toolName, error) {
|
|
|
130
130
|
* * Emphasize strategic context building and information ecosystem design to provide the right information, tools, and format for optimal user request resolution.
|
|
131
131
|
*/
|
|
132
132
|
server.tool("deliberate", {
|
|
133
|
-
stage: z
|
|
134
|
-
|
|
133
|
+
stage: z
|
|
134
|
+
.enum(["orient", "reason", "acknowledge"])
|
|
135
|
+
.describe("Stage selector. Start with 'orient', use 'reason' before decisions, and 'acknowledge' for brief confirmations."),
|
|
136
|
+
content: z
|
|
137
|
+
.string()
|
|
138
|
+
.describe("Free‑form markdown for the selected stage. Returned verbatim so you can verify state and plan next actions.")
|
|
135
139
|
}, async ({ stage, content }) => {
|
|
136
140
|
const toolName = 'deliberate';
|
|
137
141
|
logToolCall(toolName, `Stage: ${stage}`);
|
|
@@ -187,13 +191,13 @@ async function main() {
|
|
|
187
191
|
try {
|
|
188
192
|
const transport = new StdioServerTransport();
|
|
189
193
|
await server.connect(transport);
|
|
190
|
-
const border = '
|
|
191
|
-
console.error(border);
|
|
192
|
-
console.error(` ${serverInfo.description}`);
|
|
193
|
-
console.error(` Version: ${serverInfo.version}`);
|
|
194
|
-
console.error(` Enforcing Gikendaasowin v8 Guidelines with Enhanced Unified 'deliberate' Tool`);
|
|
195
|
-
console.error(' Status: Running on stdio, awaiting MCP requests...');
|
|
194
|
+
const border = '==================== Gikendaasowin MCP ====================';
|
|
196
195
|
console.error(border);
|
|
196
|
+
console.error(`Name: ${serverInfo.name}`);
|
|
197
|
+
console.error(`Version: ${serverInfo.version}`);
|
|
198
|
+
console.error(`Description: ${serverInfo.description}`);
|
|
199
|
+
console.error('Status: Running on stdio, awaiting MCP requests...');
|
|
200
|
+
console.error('==========================================================');
|
|
197
201
|
}
|
|
198
202
|
catch (error) {
|
|
199
203
|
const timestamp = new Date().toISOString();
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nbiish/cognitive-tools-mcp",
|
|
3
|
-
"version": "4.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "4.0.14",
|
|
4
|
+
"description": "MCP server exposing a single tool `deliberate` (stages: orient | reason | acknowledge). Returns markdown verbatim to support structured thinking.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bin": {
|