wellness-nourish 0.6.4 → 0.6.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.
package/README.md CHANGED
@@ -26,7 +26,7 @@
26
26
  </p>
27
27
 
28
28
  <p align="center">
29
- <strong>📈 Active in the wild: <a href="https://www.npmjs.com/package/wellness-nourish">~500 npm downloads/day</a> across AI agents and MCP clients.</strong><br>
29
+ <strong>📈 Published on npm and used by AI agents and MCP clients</strong> &mdash; see the live <a href="https://www.npmjs.com/package/wellness-nourish">download badge</a> above for current numbers.<br>
30
30
  <sub>If Nourish helps your agent, a ⭐ on this repo makes it easier for other AI builders to find.</sub>
31
31
  </p>
32
32
 
@@ -35,6 +35,8 @@
35
35
  > - [Delx Wellness for OpenClaw](https://github.com/davidmosiah/delx-wellness-openclaw): `npx -y delx-wellness-openclaw setup`
36
36
  >
37
37
  > Both preconfigure this connector and the full Delx Wellness stack into a dedicated profile. Or wire it standalone into Claude Desktop / Cursor / ChatGPT Desktop &mdash; see the install section below.
38
+ >
39
+ > Want runnable agent examples? Use the [Delx Agent Workbench](https://github.com/davidmosiah/delx-agent-workbench) for prompt packs, MCP client configs and local-first workflow templates.
38
40
 
39
41
  ---
40
42
 
@@ -50,6 +52,8 @@ Wellness Nourish is a local MCP server for nutrition search, barcode lookup, bar
50
52
  <img src="assets/telegram-nourish-demo.svg" alt="Wellness Nourish Telegram and Hermes nutrition workflow demo" width="92%" />
51
53
  </p>
52
54
 
55
+ Field guide: [Why local-first wellness agents need MCP](https://github.com/davidmosiah/davidmosiah/blob/main/docs/local-first-wellness-agents.md).
56
+
53
57
  ## Try It In 60 Seconds
54
58
 
55
59
  ```bash
@@ -276,4 +280,3 @@ The full [Delx Wellness](https://wellness.delx.ai) connector library:
276
280
  - 🐛 **Bug reports / feature requests** — [GitHub Issues](https://github.com/davidmosiah/wellness-nourish/issues)
277
281
  - 🐦 **Updates** — [@delx369](https://x.com/delx369) on X
278
282
  - 🌐 **Site** — [wellness.delx.ai](https://wellness.delx.ai)
279
-
@@ -1,10 +1,10 @@
1
1
  export declare const SERVER_NAME = "nourish-mcp";
2
- export declare const SERVER_VERSION = "0.6.4";
2
+ export declare const SERVER_VERSION = "0.6.5";
3
3
  export declare const NPM_PACKAGE_NAME = "wellness-nourish";
4
- export declare const PINNED_NPM_PACKAGE = "wellness-nourish@0.6.4";
4
+ export declare const PINNED_NPM_PACKAGE = "wellness-nourish@0.6.5";
5
5
  export declare const DEFAULT_HOST = "127.0.0.1";
6
6
  export declare const DEFAULT_PORT = 3000;
7
7
  export declare const LOCAL_DIR_NAME = ".wellness-nourish";
8
- export declare const USER_AGENT = "wellness-nourish/0.6.4 (https://wellness.delx.ai; contact: david@delx.ai)";
8
+ export declare const USER_AGENT = "wellness-nourish/0.6.5 (https://wellness.delx.ai; contact: david@delx.ai)";
9
9
  export declare const USDA_BASE_URL = "https://api.nal.usda.gov/fdc/v1";
10
10
  export declare const OFF_BASE_URL = "https://world.openfoodfacts.org";
package/dist/constants.js CHANGED
@@ -1,5 +1,5 @@
1
1
  export const SERVER_NAME = "nourish-mcp";
2
- export const SERVER_VERSION = "0.6.4";
2
+ export const SERVER_VERSION = "0.6.5";
3
3
  export const NPM_PACKAGE_NAME = "wellness-nourish";
4
4
  export const PINNED_NPM_PACKAGE = `${NPM_PACKAGE_NAME}@${SERVER_VERSION}`;
5
5
  export const DEFAULT_HOST = "127.0.0.1";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wellness-nourish",
3
- "version": "0.6.4",
3
+ "version": "0.6.5",
4
4
  "description": "Local-first nutrition MCP server for AI agents: food search, barcode lookup, meal photos, hydration, goals and safe intake logging.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -36,7 +36,8 @@
36
36
  "test:ux-tools": "node scripts/test-ux-tools.mjs",
37
37
  "test:coach-wearable": "node scripts/test-coach-wearable.mjs",
38
38
  "test": "npm run typecheck && npm run build && npm run test:normalization && npm run test:providers && npm run test:intake-store && npm run test:hydration-goals && npm run test:goal-progress && npm run test:meal-estimator && npm run test:display-names && npm run test:image-tools && npm run test:summary && npm run test:privacy && npm run test:http-helper && npm run test:local-date && npm run test:carbon && npm run test:security && npm run test:ux-tools && npm run test:coach-wearable && npm run smoke && npm run smoke:http && npm run test:cli-ux && npm run test:agent-readiness && npm run test:hermes-agent && npm run prepack && npm run test:metadata",
39
- "test:metadata": "node scripts/metadata-check.mjs"
39
+ "test:metadata": "node scripts/metadata-check.mjs",
40
+ "prepublishOnly": "npm test"
40
41
  },
41
42
  "engines": {
42
43
  "node": ">=20"
@@ -87,5 +88,23 @@
87
88
  "hono": "4.12.22",
88
89
  "fast-uri": "3.1.2",
89
90
  "ip-address": "10.2.0"
90
- }
91
+ },
92
+ "publishConfig": {
93
+ "access": "public"
94
+ },
95
+ "files": [
96
+ "dist",
97
+ "README.md",
98
+ "LICENSE",
99
+ "CHANGELOG.md",
100
+ "SECURITY.md",
101
+ "AGENTS.md",
102
+ "CONTRIBUTING.md",
103
+ "server.json",
104
+ "llms.txt",
105
+ "examples",
106
+ "docs",
107
+ "assets",
108
+ "glama.json"
109
+ ]
91
110
  }
package/server.json CHANGED
@@ -6,12 +6,12 @@
6
6
  "url": "https://github.com/davidmosiah/wellness-nourish",
7
7
  "source": "github"
8
8
  },
9
- "version": "0.6.4",
9
+ "version": "0.6.5",
10
10
  "packages": [
11
11
  {
12
12
  "registryType": "npm",
13
13
  "identifier": "wellness-nourish",
14
- "version": "0.6.4",
14
+ "version": "0.6.5",
15
15
  "transport": {
16
16
  "type": "stdio"
17
17
  }
@@ -1,23 +0,0 @@
1
- {
2
- "code": "737628064502",
3
- "status": 1,
4
- "product": {
5
- "code": "737628064502",
6
- "product_name": "Peanut Butter",
7
- "brands": "Fixture Foods",
8
- "url": "https://world.openfoodfacts.org/product/737628064502",
9
- "quantity": "454 g",
10
- "serving_size": "2 tbsp (32 g)",
11
- "serving_quantity": 32,
12
- "nutriments": {
13
- "energy-kcal_100g": 588,
14
- "proteins_100g": 25,
15
- "carbohydrates_100g": 20,
16
- "fat_100g": 50,
17
- "fiber_100g": 6,
18
- "sugars_100g": 9,
19
- "saturated-fat_100g": 10,
20
- "sodium_100g": 0.4
21
- }
22
- }
23
- }
@@ -1,16 +0,0 @@
1
- {
2
- "fdcId": 173944,
3
- "description": "Bananas, raw",
4
- "dataType": "SR Legacy",
5
- "foodNutrients": [
6
- { "nutrient": { "id": 1008 }, "amount": 89 },
7
- { "nutrient": { "id": 1003 }, "amount": 1.09 },
8
- { "nutrient": { "id": 1005 }, "amount": 22.84 },
9
- { "nutrient": { "id": 1004 }, "amount": 0.33 },
10
- { "nutrient": { "id": 1079 }, "amount": 2.6 },
11
- { "nutrient": { "id": 1063 }, "amount": 12.23 }
12
- ],
13
- "foodPortions": [
14
- { "gramWeight": 118, "modifier": "1 medium" }
15
- ]
16
- }
@@ -1,28 +0,0 @@
1
- {
2
- "foods": [
3
- {
4
- "fdcId": 999001,
5
- "description": "BANANA",
6
- "dataType": "Branded",
7
- "foodNutrients": [
8
- { "nutrientId": 1008, "value": 312 },
9
- { "nutrientId": 1003, "value": 2 },
10
- { "nutrientId": 1005, "value": 71 },
11
- { "nutrientId": 1004, "value": 1 }
12
- ]
13
- },
14
- {
15
- "fdcId": 173944,
16
- "description": "Bananas, raw",
17
- "dataType": "SR Legacy",
18
- "foodNutrients": [
19
- { "nutrientId": 1008, "value": 89 },
20
- { "nutrientId": 1003, "value": 1.09 },
21
- { "nutrientId": 1005, "value": 22.84 },
22
- { "nutrientId": 1004, "value": 0.33 },
23
- { "nutrientId": 1079, "value": 2.6 },
24
- { "nutrientId": 1063, "value": 12.23 }
25
- ]
26
- }
27
- ]
28
- }
package/tsconfig.json DELETED
@@ -1,21 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "target": "ES2022",
4
- "module": "NodeNext",
5
- "moduleResolution": "NodeNext",
6
- "lib": ["ES2022"],
7
- "rootDir": "src",
8
- "outDir": "dist",
9
- "strict": true,
10
- "esModuleInterop": true,
11
- "forceConsistentCasingInFileNames": true,
12
- "skipLibCheck": true,
13
- "resolveJsonModule": true,
14
- "declaration": true,
15
- "sourceMap": true,
16
- "noUncheckedIndexedAccess": true,
17
- "exactOptionalPropertyTypes": true
18
- },
19
- "include": ["src/**/*.ts"],
20
- "exclude": ["dist", "node_modules"]
21
- }