wellness-nourish 0.1.3 → 0.1.4

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.3";
2
+ export declare const SERVER_VERSION = "0.1.4";
3
3
  export declare const NPM_PACKAGE_NAME = "wellness-nourish";
4
- export declare const PINNED_NPM_PACKAGE = "wellness-nourish@0.1.3";
4
+ export declare const PINNED_NPM_PACKAGE = "wellness-nourish@0.1.4";
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.3 (https://wellness.delx.ai; contact: david@delx.ai)";
8
+ export declare const USER_AGENT = "wellness-nourish/0.1.4 (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.3";
2
+ export const SERVER_VERSION = "0.1.4";
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.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Standalone MCP server for nutrition search, intake, and meal summaries.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -51,5 +51,6 @@
51
51
  "@types/node": "^25.6.0",
52
52
  "tsx": "^4.20.6",
53
53
  "typescript": "^6.0.3"
54
- }
54
+ },
55
+ "mcpName": "io.github.davidmosiah/wellness-nourish"
55
56
  }
package/server.json CHANGED
@@ -1,16 +1,20 @@
1
1
  {
2
+ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
2
3
  "name": "io.github.davidmosiah/wellness-nourish",
3
- "package": "wellness-nourish",
4
- "version": "0.1.3",
5
- "description": "Local MCP server for pt-BR nutrition estimates, barcode photo lookup, meal photo estimates, intake logging, hydration, goals, exports, and meal summaries.",
4
+ "description": "Local-first MCP for pt-BR nutrition estimates, barcode photo lookup, meal photo estimates, intake logging, hydration, goals and summaries.",
6
5
  "repository": {
7
- "type": "git",
8
- "url": "https://github.com/davidmosiah/wellness-nourish"
6
+ "url": "https://github.com/davidmosiah/wellness-nourish",
7
+ "source": "github"
9
8
  },
10
- "command": "npx",
11
- "args": [
12
- "-y",
13
- "wellness-nourish"
14
- ],
15
- "status": "active"
9
+ "version": "0.1.4",
10
+ "packages": [
11
+ {
12
+ "registryType": "npm",
13
+ "identifier": "wellness-nourish",
14
+ "version": "0.1.4",
15
+ "transport": {
16
+ "type": "stdio"
17
+ }
18
+ }
19
+ ]
16
20
  }