@nbiish/cognitive-tools-mcp 0.3.3 → 0.3.4
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/LICENSE +1 -1
- package/README.md +86 -7
- package/build/index.js +3 -3
- package/package.json +3 -2
package/LICENSE
CHANGED
|
@@ -79,6 +79,6 @@ This License shall be governed by tribal law and federal Indian law, with respec
|
|
|
79
79
|
10. CONTACT INFORMATION
|
|
80
80
|
|
|
81
81
|
For permissions, questions, or additional information, please contact:
|
|
82
|
-
|
|
82
|
+
nbiish@umich.edu
|
|
83
83
|
|
|
84
84
|
END OF TERMS AND CONDITIONS
|
package/README.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
|
-
# @nbiish/
|
|
1
|
+
# @nbiish/gikendaasowin-aabajichiganan-mcp
|
|
2
2
|
|
|
3
|
-
A Model Context Protocol server providing advanced cognitive reasoning tools for AI agents.
|
|
3
|
+
ᑭᑫᓐᑖᓱᐎᓐ ᐋᐸᒋᒋᑲᓇᓐ - Gikendaasowin Aabajichiganan - (Cognitive Tools): A Model Context Protocol server providing advanced cognitive reasoning tools for AI agents.
|
|
4
|
+
|
|
5
|
+
Known as:
|
|
6
|
+
- Anishinaabemowin: [`@nbiish/gikendaasowin-aabajichiganan-mcp`](https://www.npmjs.com/package/@nbiish/gikendaasowin-aabajichiganan-mcp)
|
|
7
|
+
- English: [`@nbiish/cognitive-tools-mcp`](https://www.npmjs.com/package/@nbiish/cognitive-tools-mcp)
|
|
8
|
+
|
|
9
|
+
Both packages are maintained in parallel and receive the same updates. You can use either package name in your projects - they provide identical functionality.
|
|
4
10
|
|
|
5
11
|
## Features
|
|
6
12
|
|
|
@@ -13,13 +19,32 @@ Provides five cognitive tools for AI agents:
|
|
|
13
19
|
|
|
14
20
|
## Installation
|
|
15
21
|
|
|
22
|
+
You can install using either the Anishinaabemowin or English package name:
|
|
23
|
+
|
|
16
24
|
```bash
|
|
25
|
+
# Using Anishinaabemowin package name
|
|
26
|
+
npx @nbiish/gikendaasowin-aabajichiganan-mcp
|
|
27
|
+
|
|
28
|
+
# Using English package name
|
|
17
29
|
npx @nbiish/cognitive-tools-mcp
|
|
18
30
|
```
|
|
19
31
|
|
|
20
32
|
## Usage with Claude Desktop
|
|
21
33
|
|
|
22
|
-
Add to your MCP configuration file (`~/.cursor/mcp.json`):
|
|
34
|
+
Add to your MCP configuration file (`~/.cursor/mcp.json`). You can use either package name:
|
|
35
|
+
|
|
36
|
+
```json
|
|
37
|
+
{
|
|
38
|
+
"mcpServers": {
|
|
39
|
+
"gikendaasowin-aabajichiganan": {
|
|
40
|
+
"command": "npx",
|
|
41
|
+
"args": ["-y", "@nbiish/gikendaasowin-aabajichiganan-mcp"]
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
Or:
|
|
23
48
|
|
|
24
49
|
```json
|
|
25
50
|
{
|
|
@@ -32,6 +57,42 @@ Add to your MCP configuration file (`~/.cursor/mcp.json`):
|
|
|
32
57
|
}
|
|
33
58
|
```
|
|
34
59
|
|
|
60
|
+
## Tool Descriptions
|
|
61
|
+
|
|
62
|
+
### Think Tool
|
|
63
|
+
- **Purpose**: Internal workspace for structured analysis, planning, and verification
|
|
64
|
+
- **Input**: `thought` (string) - Your comprehensive analysis, reasoning, and planning
|
|
65
|
+
- **Response Format**:
|
|
66
|
+
```json
|
|
67
|
+
{
|
|
68
|
+
"content": [{
|
|
69
|
+
"type": "text",
|
|
70
|
+
"text": "Your thought content",
|
|
71
|
+
"mimeType": "text/plain"
|
|
72
|
+
}]
|
|
73
|
+
}
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
### Chain of Thought Tool
|
|
77
|
+
- **Purpose**: Generate explicit, sequential reasoning steps for problem-solving
|
|
78
|
+
- **Input**: `problem_statement` (string) - The specific problem requiring step-by-step reasoning
|
|
79
|
+
- **Response Format**: Same as Think Tool
|
|
80
|
+
|
|
81
|
+
### Reflection Tool
|
|
82
|
+
- **Purpose**: Self-critique and improvement of reasoning or plans
|
|
83
|
+
- **Input**: `input_reasoning_or_plan` (string) - The cognitive output to be evaluated
|
|
84
|
+
- **Response Format**: Same as Think Tool
|
|
85
|
+
|
|
86
|
+
### Plan and Solve Tool
|
|
87
|
+
- **Purpose**: High-level strategy development for complex objectives
|
|
88
|
+
- **Input**: `task_objective` (string) - The overarching goal requiring a structured plan
|
|
89
|
+
- **Response Format**: Same as Think Tool
|
|
90
|
+
|
|
91
|
+
### Chain of Draft Tool
|
|
92
|
+
- **Purpose**: Concise, iterative reasoning steps for rapid exploration
|
|
93
|
+
- **Input**: `problem_statement` (string) - Problem suitable for concise, iterative reasoning
|
|
94
|
+
- **Response Format**: Same as Think Tool
|
|
95
|
+
|
|
35
96
|
## Development
|
|
36
97
|
|
|
37
98
|
```bash
|
|
@@ -71,6 +132,17 @@ npm run inspector
|
|
|
71
132
|
}
|
|
72
133
|
```
|
|
73
134
|
|
|
135
|
+
Example Response:
|
|
136
|
+
```json
|
|
137
|
+
{
|
|
138
|
+
"content": [{
|
|
139
|
+
"type": "text",
|
|
140
|
+
"text": "Analyzing the Seven Grandfather Teachings...",
|
|
141
|
+
"mimeType": "text/plain"
|
|
142
|
+
}]
|
|
143
|
+
}
|
|
144
|
+
```
|
|
145
|
+
|
|
74
146
|
#### Chain of Thought Example
|
|
75
147
|
```json
|
|
76
148
|
{
|
|
@@ -111,20 +183,27 @@ npm run inspector
|
|
|
111
183
|
}
|
|
112
184
|
```
|
|
113
185
|
|
|
186
|
+
## Version History
|
|
187
|
+
|
|
188
|
+
- **0.3.3**: Fixed response format to comply with MCP schema, synchronized version numbers
|
|
189
|
+
- **0.3.2**: Updated response format structure
|
|
190
|
+
- **0.3.1**: Initial public release with basic functionality
|
|
191
|
+
- **0.3.0**: Development version
|
|
192
|
+
|
|
114
193
|
## License
|
|
115
194
|
|
|
116
|
-
|
|
195
|
+
[LICENSE](LICENSE)
|
|
117
196
|
|
|
118
197
|
## Citation
|
|
119
198
|
|
|
120
199
|
```bibtex
|
|
121
|
-
@misc{
|
|
200
|
+
@misc{gikendaasowin-aabajichiganan-mcp2025,
|
|
122
201
|
author/creator/steward = {ᓂᐲᔥ ᐙᐸᓂᒥᑮ-ᑭᓇᐙᐸᑭᓯ (Nbiish Waabanimikii-Kinawaabakizi), also known legally as JUSTIN PAUL KENWABIKISE, professionally documented as Nbiish-Justin Paul Kenwabikise, Anishinaabek Dodem (Anishinaabe Clan): Animikii (Thunder)},
|
|
123
|
-
title/description = {
|
|
202
|
+
title/description = {ᑭᑫᓐᑖᓱᐎᓐ ᐋᐸᒋᒋᑲᓇᓐ - Gikendaasowin Aabajichiganan - (Cognitive Tools)},
|
|
124
203
|
type_of_work = {Indigenous digital creation/software incorporating traditional knowledge and cultural expressions},
|
|
125
204
|
year = {2025},
|
|
126
205
|
publisher/source/event = {GitHub repository under tribal sovereignty protections},
|
|
127
|
-
howpublished = {\url{https://github.com/nbiish/
|
|
206
|
+
howpublished = {\url{https://github.com/nbiish/gikendaasowin-aabajichiganan-mcp}},
|
|
128
207
|
note = {Authored and stewarded by ᓂᐲᔥ ᐙᐸᓂᒥᑮ-ᑭᓇᐙᐸᑭᓯ (Nbiish Waabanimikii-Kinawaabakizi), also known legally as JUSTIN PAUL KENWABIKISE, professionally documented as Nbiish-Justin Paul Kenwabikise, Anishinaabek Dodem (Anishinaabe Clan): Animikii (Thunder), an enrolled member of the sovereign Grand Traverse Band of Ottawa and Chippewa Indians. This work embodies Indigenous intellectual property, traditional knowledge systems (TK), traditional cultural expressions (TCEs), and associated data protected under tribal law, federal Indian law, treaty rights, Indigenous Data Sovereignty principles, and international indigenous rights frameworks including UNDRIP. All usage, benefit-sharing, and data governance are governed by the COMPREHENSIVE RESTRICTED USE LICENSE FOR INDIGENOUS CREATIONS WITH TRIBAL SOVEREIGNTY, DATA SOVEREIGNTY, AND WEALTH RECLAMATION PROTECTIONS.}
|
|
129
208
|
}
|
|
130
209
|
```
|
package/build/index.js
CHANGED
|
@@ -4,9 +4,9 @@ import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js"
|
|
|
4
4
|
import { z } from "zod";
|
|
5
5
|
// Create the MCP server
|
|
6
6
|
const server = new McpServer({
|
|
7
|
-
name: "
|
|
7
|
+
name: "gikendaasowin-aabajichiganan-mcp",
|
|
8
8
|
version: "0.3.3",
|
|
9
|
-
description: "Provides a suite of advanced cognitive reasoning tools for sophisticated problem-solving"
|
|
9
|
+
description: "ᑭᑫᓐᑖᓱᐎᓐ ᐋᐸᒋᒋᑲᓇᓐ - Gikendaasowin Aabajichiganan - (Cognitive Tools): Provides a suite of advanced cognitive reasoning tools for sophisticated problem-solving"
|
|
10
10
|
});
|
|
11
11
|
// Define the think tool
|
|
12
12
|
server.tool("think", {
|
|
@@ -100,7 +100,7 @@ async function main() {
|
|
|
100
100
|
try {
|
|
101
101
|
const transport = new StdioServerTransport();
|
|
102
102
|
await server.connect(transport);
|
|
103
|
-
console.error('Cognitive Tools MCP Server running on stdio');
|
|
103
|
+
console.error('ᑭᑫᓐᑖᓱᐎᓐ ᐋᐸᒋᒋᑲᓇᓐ - Gikendaasowin Aabajichiganan - (Cognitive Tools) MCP Server running on stdio');
|
|
104
104
|
}
|
|
105
105
|
catch (error) {
|
|
106
106
|
console.error('Fatal error in main():', error);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nbiish/cognitive-tools-mcp",
|
|
3
|
-
"version": "0.3.
|
|
4
|
-
"description": "A Model Context Protocol server providing advanced cognitive reasoning tools for AI agents",
|
|
3
|
+
"version": "0.3.4",
|
|
4
|
+
"description": "ᑭᑫᓐᑖᓱᐎᓐ ᐋᐸᒋᒋᑲᓇᓐ - Gikendaasowin Aabajichiganan - (Cognitive Tools): A Model Context Protocol server providing advanced cognitive reasoning tools for AI agents",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bin": {
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
"model-context-protocol",
|
|
23
23
|
"ai",
|
|
24
24
|
"reasoning",
|
|
25
|
+
"gikendaasowin-aabajichiganan",
|
|
25
26
|
"cognitive-tools",
|
|
26
27
|
"claude",
|
|
27
28
|
"agent"
|