mcp-grocy 2.7.0 → 2.7.1
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/CHANGELOG.md +7 -0
- package/README.md +4 -0
- package/build/resources/CHANGELOG.md +9 -3
- package/build/resources/README.md +4 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [2.7.1](https://github.com/miguelangel-nubla/mcp-grocy/compare/v2.7.0...v2.7.1) (2026-09-10)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- refuse non-recipe meal plan entries in recipes_cooking_complete before writing ([172d1f0](https://github.com/miguelangel-nubla/mcp-grocy/commit/172d1f0089b1e401736b258cec652a30d90e0215)), closes [#2](https://github.com/miguelangel-nubla/mcp-grocy/issues/2)
|
|
6
|
+
- send correct meal plan payload in recipes_mealplan_add_recipe ([2b180b0](https://github.com/miguelangel-nubla/mcp-grocy/commit/2b180b02b58ab03db69efab727ee53ab88caa0d0)), closes [#2](https://github.com/miguelangel-nubla/mcp-grocy/issues/2)
|
|
7
|
+
|
|
1
8
|
# [2.7.0](https://github.com/miguelangel-nubla/mcp-grocy/compare/v2.6.0...v2.7.0) (2026-08-03)
|
|
2
9
|
|
|
3
10
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -26,6 +26,10 @@
|
|
|
26
26
|
>
|
|
27
27
|
> If you need complete API access, use the [original fork](https://github.com/saya6k/mcp-grocy-api). This version trades flexibility for focused, dependable grocery management workflows.
|
|
28
28
|
|
|
29
|
+
> **⚡ Supported Grocy Backends**
|
|
30
|
+
>
|
|
31
|
+
> This MCP server is compatible with standard [Grocy](https://grocy.info/) (v4.x+) as well as [grocy-next](https://github.com/miguelangel-nubla/grocy-next) (an enhanced fork with container inventory management and live workflows). The primary environment used by the author is `grocy-next`.
|
|
32
|
+
|
|
29
33
|
## 🎯 What This MCP Does
|
|
30
34
|
|
|
31
35
|
Transform your LLM into an intelligent household management assistant with focused tools for:
|
|
@@ -1,14 +1,20 @@
|
|
|
1
|
-
|
|
1
|
+
## [2.7.1](https://github.com/miguelangel-nubla/mcp-grocy/compare/v2.7.0...v2.7.1) (2026-09-10)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Bug Fixes
|
|
5
5
|
|
|
6
|
-
*
|
|
6
|
+
* refuse non-recipe meal plan entries in recipes_cooking_complete before writing ([172d1f0](https://github.com/miguelangel-nubla/mcp-grocy/commit/172d1f0089b1e401736b258cec652a30d90e0215)), closes [#2](https://github.com/miguelangel-nubla/mcp-grocy/issues/2)
|
|
7
|
+
* send correct meal plan payload in recipes_mealplan_add_recipe ([2b180b0](https://github.com/miguelangel-nubla/mcp-grocy/commit/2b180b02b58ab03db69efab727ee53ab88caa0d0)), closes [#2](https://github.com/miguelangel-nubla/mcp-grocy/issues/2)
|
|
8
|
+
|
|
9
|
+
# [2.7.0](https://github.com/miguelangel-nubla/mcp-grocy/compare/v2.6.0...v2.7.0) (2026-08-03)
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
7
12
|
|
|
13
|
+
- **server:** fix strict null check in invokeTool and add pre-commit type-check ([affc8d0](https://github.com/miguelangel-nubla/mcp-grocy/commit/affc8d0015343e26fff4cf2b2abdf21c2c4a967a))
|
|
8
14
|
|
|
9
15
|
### Features
|
|
10
16
|
|
|
11
|
-
|
|
17
|
+
- add serialize_structured_to_content configuration to improve compatibility with legacy clients ([4371c18](https://github.com/miguelangel-nubla/mcp-grocy/commit/4371c18bd2b9038ab68c79403cd0e5f47619c23b))
|
|
12
18
|
|
|
13
19
|
# [2.6.0](https://github.com/miguelangel-nubla/mcp-grocy/compare/v2.5.0...v2.6.0) (2026-07-06)
|
|
14
20
|
|
|
@@ -26,6 +26,10 @@
|
|
|
26
26
|
>
|
|
27
27
|
> If you need complete API access, use the [original fork](https://github.com/saya6k/mcp-grocy-api). This version trades flexibility for focused, dependable grocery management workflows.
|
|
28
28
|
|
|
29
|
+
> **⚡ Supported Grocy Backends**
|
|
30
|
+
>
|
|
31
|
+
> This MCP server is compatible with standard [Grocy](https://grocy.info/) (v4.x+) as well as [grocy-next](https://github.com/miguelangel-nubla/grocy-next) (an enhanced fork with container inventory management and live workflows). The primary environment used by the author is `grocy-next`.
|
|
32
|
+
|
|
29
33
|
## 🎯 What This MCP Does
|
|
30
34
|
|
|
31
35
|
Transform your LLM into an intelligent household management assistant with focused tools for:
|