We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/rldiao/mealie-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
from .client import MealieClient
from .group import GroupMixin
from .mealplan import MealplanMixin
from .recipe import RecipeMixin
from .user import UserMixin
class MealieFetcher(
RecipeMixin,
UserMixin,
GroupMixin,
MealplanMixin,
MealieClient,
):
pass