How to Use the Mealie (Recipe Manager) MCP in LlamaIndex
Index your Mealie recipes and meal plans directly into LlamaIndex vector stores for semantic kitchen RAG.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Mealie (Recipe Manager) MCP to LlamaIndex
Create your Vinkius account to connect Mealie (Recipe Manager) to LlamaIndex and route execution through our secure gateway. The platform manages server hosting, runtime updates, and security layers. Configuration requires no manual server provisioning.
Index recipe data for LlamaIndex semantic search
`list_recipes` serves as the primary data pipeline for your local culinary knowledge base. LlamaIndex pulls your entire catalog, embeds the ingredient lists, and stores them in your vector database. This lets your agent answer questions about your cooking history without querying the live database every time. You get fast, context-aware answers grounded in your actual recipe collection.
Grounded meal planning with RAG
`list_meal_plans` provides the historical context your agent needs to draft new schedules. By indexing past weeks, the agent knows what you actually cooked instead of guessing. The agent uses `create_meal_plan` to write the new schedule once it finds recipes that fit your historical patterns. This MCP Server setup prevents the LLM from hallucinating meals you have never made.
Structured shopping list generation via MCP Server
`list_shopping_lists` retrieves your active grocery runs so LlamaIndex can cross-reference them with new meal plans. The agent checks what is already on your list before adding more items. To modify lists, the agent invokes `toggle_shopping_list_item` based on your chat commands. This keeps your physical kitchen and your digital index synchronized.
Set up Mealie (Recipe Manager) MCP in LlamaIndex
Prerequisites
- Python 3.10+ installed
-
llama-index-tools-mcppackage - Active Vinkius subscription with a valid endpoint token
- 1
Install dependencies
Run
pip install llama-index-tools-mcp llama-index-llms-openai. The MCP tools package providesBasicMCPClientandMcpToolSpec. - 2
Connect with BasicMCPClient
Point
BasicMCPClientto your Vinkius endpoint URL. Replace[YOUR_TOKEN_HERE]with your token from cloud.vinkius.com. Supports SSE and Streamable HTTP transports. - 3
Convert to LlamaIndex tools
Call
mcp_tool_spec.to_tool_list_async()to convert all Mealie (Recipe Manager) MCP tools into nativeFunctionToolobjects that any LlamaIndex agent can use. - 4
Run with any LLM
Create a
FunctionAgentwith the tools and your preferred LLM. SwapOpenAIforAnthropic,Gemini, or any LlamaIndex-supported provider.
from llama_index.tools.mcp import BasicMCPClient, McpToolSpec
from llama_index.core.agent.workflow import FunctionAgent
from llama_index.llms.openai import OpenAI
# Connect to the MCP
mcp_client = BasicMCPClient(
"https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp"
)
mcp_tool_spec = McpToolSpec(client=mcp_client)
# Convert MCP tools to LlamaIndex tools
tools = await mcp_tool_spec.to_tool_list_async()
# Create and run the agent
agent = FunctionAgent(
tools=tools,
llm=OpenAI(model="gpt-4o"),
system_prompt="You have access to Mealie (Recipe Manager) tools.",
)
response = await agent.run("List recent Mealie (Recipe Manager) data") Independent Platform Disclaimer: Vinkius is an independent platform and is not affiliated with, endorsed by, sponsored by, verified by, or otherwise authorized by Mealie. All third-party trademarks, logos, and brand names are the property of their respective owners. Their use on this website is strictly for informational purposes to identify service compatibility and interoperability.
Why Choose Vinkius
Vinkius connects your tools to AI with real-time monitoring and automatic cost savings — all from one dashboard.
Real-time monitoring
Live
visibility into every interaction
Connect your favorite tools to your AI and see exactly what's happening — every request, every response, in real time.
Built-in savings
60%
lower AI costs
Vinkius compresses data between your apps and your AI automatically. Lower bills every month — no configuration required.
Single dashboard
One
place for every integration
Every tool your AI connects to, managed from a single screen. One account, complete control.
Common questions about Mealie (Recipe Manager) MCP in LlamaIndex
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the Mealie (Recipe Manager) MCP today
We host it, we monitor it, we maintain it. You just paste one token.