@bojanrajkovic/mcp-paprika 1.0.3 → 1.0.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.
- package/dist/utils/config.js +4 -1
- package/package.json +17 -17
package/dist/utils/config.js
CHANGED
|
@@ -124,8 +124,11 @@ function readConfigFile(configDir) {
|
|
|
124
124
|
}
|
|
125
125
|
}
|
|
126
126
|
// Loads .env file from configDir into process.env. Missing .env is silently ignored.
|
|
127
|
+
// quiet: true suppresses dotenv's "◇ injected env" startup banner — MCP stdio
|
|
128
|
+
// transport reserves stdout for JSON-RPC framing, so any stray write corrupts
|
|
129
|
+
// the wire protocol (issue #49).
|
|
127
130
|
function loadDotEnv(configDir) {
|
|
128
|
-
dotenv.config({ path: join(configDir, ".env") });
|
|
131
|
+
dotenv.config({ path: join(configDir, ".env"), quiet: true });
|
|
129
132
|
}
|
|
130
133
|
// Maps known env vars to the nested config object structure.
|
|
131
134
|
function buildEnvOverrides(env) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bojanrajkovic/mcp-paprika",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "MCP server for Paprika recipe manager",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -32,37 +32,37 @@
|
|
|
32
32
|
"typecheck": "tsc --noEmit"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
35
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
36
36
|
"cockatiel": "^3.2.1",
|
|
37
|
-
"dotenv": "^17.
|
|
37
|
+
"dotenv": "^17.4.2",
|
|
38
38
|
"env-paths": "^4.0.0",
|
|
39
39
|
"luxon": "^3.7.2",
|
|
40
40
|
"mitt": "^3.0.1",
|
|
41
41
|
"neverthrow": "^8.2.0",
|
|
42
|
-
"parse-duration": "^2.1.
|
|
42
|
+
"parse-duration": "^2.1.6",
|
|
43
43
|
"vectra": "^0.12.3",
|
|
44
44
|
"zod": "^3.25.76"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@commitlint/cli": "^20.5.
|
|
48
|
-
"@commitlint/config-conventional": "^20.5.
|
|
47
|
+
"@commitlint/cli": "^20.5.3",
|
|
48
|
+
"@commitlint/config-conventional": "^20.5.3",
|
|
49
49
|
"@tsconfig/node24": "^24.0.4",
|
|
50
50
|
"@tsconfig/strictest": "^2.0.8",
|
|
51
51
|
"@types/luxon": "^3.7.1",
|
|
52
|
-
"@types/node": "^24.12.
|
|
53
|
-
"@vitest/coverage-v8": "^4.1.
|
|
54
|
-
"fast-check": "^4.
|
|
55
|
-
"lefthook": "^2.1.
|
|
56
|
-
"msw": "^2.
|
|
57
|
-
"oxfmt": "^0.
|
|
58
|
-
"oxlint": "^1.
|
|
52
|
+
"@types/node": "^24.12.2",
|
|
53
|
+
"@vitest/coverage-v8": "^4.1.5",
|
|
54
|
+
"fast-check": "^4.7.0",
|
|
55
|
+
"lefthook": "^2.1.6",
|
|
56
|
+
"msw": "^2.14.2",
|
|
57
|
+
"oxfmt": "^0.47.0",
|
|
58
|
+
"oxlint": "^1.62.0",
|
|
59
59
|
"tsx": "^4.21",
|
|
60
|
-
"type-fest": "^5.
|
|
60
|
+
"type-fest": "^5.6.0",
|
|
61
61
|
"typescript": "^5.9.3",
|
|
62
|
-
"vitest": "^4.1.
|
|
62
|
+
"vitest": "^4.1.5"
|
|
63
63
|
},
|
|
64
64
|
"engines": {
|
|
65
|
-
"node": ">=24.14.
|
|
65
|
+
"node": ">=24.14.1"
|
|
66
66
|
},
|
|
67
|
-
"packageManager": "pnpm@10.
|
|
67
|
+
"packageManager": "pnpm@10.33.2"
|
|
68
68
|
}
|