Files
mealie-mcp/pyproject.toml
Fizz 242bb15641 Add read-only Buzz client entrypoint
Expose the existing stdio server to a dedicated Buzz agent without granting mutation tools or leaking unrelated runtime credentials. Document the verified Hermes and Buzz client paths.

Co-authored-by: fredamn76 <fredrik.fallman@gmail.com>
Signed-off-by: fredamn76 <fredrik.fallman@gmail.com>
2026-07-31 10:35:34 +02:00

24 lines
529 B
TOML

[project]
name = "mealie-mcp"
version = "0.1.0"
description = "MCP tools for Mealie recipe planning"
requires-python = ">=3.11"
dependencies = ["mcp>=2.0.0", "httpx>=0.27.0"]
[project.optional-dependencies]
dev = ["pytest>=8.0"]
[project.scripts]
mealie-mcp = "mealie_mcp.server:main"
mealie-mcp-read-only = "mealie_mcp.server:main_read_only"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["mealie_mcp"]
[tool.pytest.ini_options]
testpaths = ["tests"]