@nbiish/cognitive-tools-mcp 0.3.1 → 0.3.3

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.
Files changed (2) hide show
  1. package/build/index.js +6 -11
  2. package/package.json +1 -1
package/build/index.js CHANGED
@@ -5,7 +5,7 @@ import { z } from "zod";
5
5
  // Create the MCP server
6
6
  const server = new McpServer({
7
7
  name: "cognitive-tools-mcp",
8
- version: "0.3.0",
8
+ version: "0.3.3",
9
9
  description: "Provides a suite of advanced cognitive reasoning tools for sophisticated problem-solving"
10
10
  });
11
11
  // Define the think tool
@@ -18,8 +18,7 @@ server.tool("think", {
18
18
  return {
19
19
  content: [{
20
20
  type: "text",
21
- text: thought,
22
- mimeType: "text/plain"
21
+ text: thought
23
22
  }]
24
23
  };
25
24
  });
@@ -33,8 +32,7 @@ server.tool("chain_of_thought", {
33
32
  return {
34
33
  content: [{
35
34
  type: "text",
36
- text: problem_statement,
37
- mimeType: "text/plain"
35
+ text: problem_statement
38
36
  }]
39
37
  };
40
38
  });
@@ -48,8 +46,7 @@ server.tool("reflection", {
48
46
  return {
49
47
  content: [{
50
48
  type: "text",
51
- text: input_reasoning_or_plan,
52
- mimeType: "text/plain"
49
+ text: input_reasoning_or_plan
53
50
  }]
54
51
  };
55
52
  });
@@ -63,8 +60,7 @@ server.tool("plan_and_solve", {
63
60
  return {
64
61
  content: [{
65
62
  type: "text",
66
- text: task_objective,
67
- mimeType: "text/plain"
63
+ text: task_objective
68
64
  }]
69
65
  };
70
66
  });
@@ -78,8 +74,7 @@ server.tool("chain_of_draft", {
78
74
  return {
79
75
  content: [{
80
76
  type: "text",
81
- text: problem_statement,
82
- mimeType: "text/plain"
77
+ text: problem_statement
83
78
  }]
84
79
  };
85
80
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nbiish/cognitive-tools-mcp",
3
- "version": "0.3.1",
3
+ "version": "0.3.3",
4
4
  "description": "A Model Context Protocol server providing advanced cognitive reasoning tools for AI agents",
5
5
  "private": false,
6
6
  "type": "module",