wellness-nourish 0.1.5 → 0.1.6
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 +8 -0
- package/dist/constants.d.ts +3 -3
- package/dist/constants.js +1 -1
- package/dist/index.js +0 -0
- package/package.json +1 -1
- package/server.json +4 -3
package/README.md
CHANGED
|
@@ -1,9 +1,17 @@
|
|
|
1
1
|
# Wellness Nourish MCP
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/wellness-nourish)
|
|
4
|
+
[](https://www.npmjs.com/package/wellness-nourish)
|
|
5
|
+
[](https://github.com/davidmosiah/wellness-nourish/stargazers)
|
|
6
|
+
[](https://wellness.delx.ai/nutrition)
|
|
7
|
+
[](https://opensource.org/licenses/MIT)
|
|
8
|
+
|
|
3
9
|
## Overview
|
|
4
10
|
|
|
5
11
|
Wellness Nourish is a local MCP server for nutrition search, barcode lookup, barcode photo lookup, photo-assisted meal estimation, intake logging, hydration, goals, exports, and daily or weekly summaries. It runs over stdio by default for MCP clients and can also run a Streamable HTTP endpoint at `POST /mcp`.
|
|
6
12
|
|
|
13
|
+
> If this nutrition layer helps your agent workflow, please star the repo. Stars make the project easier for other AI builders to discover and help Delx keep shipping local-first wellness infrastructure.
|
|
14
|
+
|
|
7
15
|
The connector uses USDA FoodData Central as the primary food search provider. Open Food Facts is used for packaged-food barcode lookup when enabled. Local barcode image decoding is supported with ZXing. Meal photos are estimated only from an agent-provided visual observation and always require confirmation before logging. The local estimator includes a small pt-BR/Brazilian-food dictionary for common meals such as arroz, feijão, frango, ovos, banana and salada. It does not provide hosted sync, autonomous photo upload, recipe generation, or medical advice.
|
|
8
16
|
|
|
9
17
|
## Install
|
package/dist/constants.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export declare const SERVER_NAME = "nourish-mcp";
|
|
2
|
-
export declare const SERVER_VERSION = "0.1.
|
|
2
|
+
export declare const SERVER_VERSION = "0.1.6";
|
|
3
3
|
export declare const NPM_PACKAGE_NAME = "wellness-nourish";
|
|
4
|
-
export declare const PINNED_NPM_PACKAGE = "wellness-nourish@0.1.
|
|
4
|
+
export declare const PINNED_NPM_PACKAGE = "wellness-nourish@0.1.6";
|
|
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.1.
|
|
8
|
+
export declare const USER_AGENT = "wellness-nourish/0.1.6 (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.1.
|
|
2
|
+
export const SERVER_VERSION = "0.1.6";
|
|
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/dist/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
package/server.json
CHANGED
|
@@ -6,15 +6,16 @@
|
|
|
6
6
|
"url": "https://github.com/davidmosiah/wellness-nourish",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "0.1.
|
|
9
|
+
"version": "0.1.6",
|
|
10
10
|
"packages": [
|
|
11
11
|
{
|
|
12
12
|
"registryType": "npm",
|
|
13
13
|
"identifier": "wellness-nourish",
|
|
14
|
-
"version": "0.1.
|
|
14
|
+
"version": "0.1.6",
|
|
15
15
|
"transport": {
|
|
16
16
|
"type": "stdio"
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
|
-
]
|
|
19
|
+
],
|
|
20
|
+
"websiteUrl": "https://wellness.delx.ai/nutrition"
|
|
20
21
|
}
|