healthy-companion 1.0.4 → 1.0.5

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 (3) hide show
  1. package/README.md +36 -0
  2. package/package.json +1 -1
  3. package/server.js +1 -1
package/README.md ADDED
@@ -0,0 +1,36 @@
1
+ # Healthy Companion
2
+
3
+ A lightweight MCP server for tracking todos and water intake. Built with the Model Context Protocol SDK.
4
+
5
+ ## Setup
6
+
7
+ ### Kilo Code
8
+
9
+ Add to your Kilo Code MCP settings (`.kilocode/mcp.json`):
10
+
11
+ ```json
12
+ {
13
+ "mcpServers": {
14
+ "healthy-companion": {
15
+ "command": "npx",
16
+ "args": ["-y", "healthy-companion"]
17
+ }
18
+ }
19
+ }
20
+ ```
21
+
22
+ ## Tools
23
+
24
+ | Tool | Description |
25
+ | ------------- | ----------------------- |
26
+ | `todo_add` | Add a todo item |
27
+ | `todo_list` | List all todos |
28
+ | `todo_remove` | Remove a todo by number |
29
+
30
+ ## Usage
31
+
32
+ Just ask AI:
33
+
34
+ - "Add a todo: buy groceries"
35
+ - "Show my todos"
36
+ - "Remove todo 2"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "healthy-companion",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "type": "module",
5
5
  "description": "A healthy companion MCP server with todo and water tracking",
6
6
  "main": "server.js",
package/server.js CHANGED
@@ -18,7 +18,7 @@ void async function main ()
18
18
  {
19
19
  const transport = new StdioServerTransport();
20
20
  await server.connect( transport );
21
- console.warn( "MCP server is running..." );
21
+ console.error( "MCP server is running..." );
22
22
  }
23
23
  catch ( error )
24
24
  {