wellness-nourish 0.1.7 → 0.1.8

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.
@@ -1,10 +1,10 @@
1
1
  export declare const SERVER_NAME = "nourish-mcp";
2
- export declare const SERVER_VERSION = "0.1.7";
2
+ export declare const SERVER_VERSION = "0.1.8";
3
3
  export declare const NPM_PACKAGE_NAME = "wellness-nourish";
4
- export declare const PINNED_NPM_PACKAGE = "wellness-nourish@0.1.7";
4
+ export declare const PINNED_NPM_PACKAGE = "wellness-nourish@0.1.8";
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.7 (https://wellness.delx.ai; contact: david@delx.ai)";
8
+ export declare const USER_AGENT = "wellness-nourish/0.1.8 (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.7";
2
+ export const SERVER_VERSION = "0.1.8";
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/llms.txt ADDED
@@ -0,0 +1,15 @@
1
+ # Wellness Nourish
2
+ Standalone MCP server for nutrition search, intake, and meal summaries.
3
+ Repository: https://github.com/davidmosiah/wellness-nourish
4
+ Homepage: https://wellness.delx.ai/nutrition
5
+ NPM: https://www.npmjs.com/package/wellness-nourish
6
+ Primary command: npm exec --yes --package=wellness-nourish -- wellness-nourish doctor
7
+ MCP command: wellness-nourish
8
+ Agent surfaces:
9
+ - MCP registry name: io.github.davidmosiah/wellness-nourish
10
+ - Start with the connection/status or agent-manifest surface when available.
11
+ - Prefer JSON responses for automation and markdown responses for human summaries.
12
+ Safety:
13
+ - Do not paste credentials, OAuth tokens, refresh tokens, API keys or raw private exports into chat.
14
+ - Keep local config and generated data out of git.
15
+ - Treat outputs as operational context, not medical, legal or financial advice unless the repo explicitly supports that domain.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wellness-nourish",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "Standalone MCP server for nutrition search, intake, and meal summaries.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -27,7 +27,8 @@
27
27
  "test:agent-readiness": "node scripts/agent-readiness-test.mjs",
28
28
  "test:hermes-agent": "node scripts/hermes-agent-manifest-test.mjs",
29
29
  "test:privacy": "node scripts/privacy-redaction-test.mjs",
30
- "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:meal-estimator && npm run test:image-tools && npm run test:summary && npm run test:privacy && 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"
30
+ "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:meal-estimator && npm run test:image-tools && npm run test:summary && npm run test:privacy && 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",
31
+ "test:metadata": "node scripts/metadata-check.mjs"
31
32
  },
32
33
  "engines": {
33
34
  "node": ">=20"
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.1.7",
9
+ "version": "0.1.8",
10
10
  "packages": [
11
11
  {
12
12
  "registryType": "npm",
13
13
  "identifier": "wellness-nourish",
14
- "version": "0.1.7",
14
+ "version": "0.1.8",
15
15
  "transport": {
16
16
  "type": "stdio"
17
17
  }