paprika-mcp-server
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@paprika-mcp-serverfind a recipe for chocolate chip cookies"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Paprika MCP Server
An MCP server that gives AI assistants access to your Paprika Recipe Manager data.
Building
pnpm install
pnpm buildRelated MCP server: paprika-mcp
Unpacking Paprika Recipes
Paprika exports recipes as .paprikarecipes archive files. Before starting the server, unpack them into individual JSON files:
./dist/index.js unpack --input recipes.paprikarecipes --output ./recipesOption | Description |
| Path to |
| Output directory for extracted JSON files (required) |
| Enable verbose logging |
Starting the Server
./dist/index.js mcp --recipes-dir ./recipesOption | Description |
| Directory containing recipe JSON files (default: |
| MCP server name (default: |
| Enable verbose logging |
Using with Claude
Claude Code
Add a .mcp.json file to your project root:
{
"mcpServers": {
"paprika": {
"type": "stdio",
"command": "node",
"args": [
"/path/to/paprika-mcp-server/dist/index.js",
"mcp",
"--recipes-dir",
"/path/to/your/recipes"
]
}
}
}License
Apache 2.0
This server cannot be deployed
Maintenance
Related MCP Connectors
MCP server that lets AI assistants use all OneSchema features exposed via the public API.
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Search your AI chat history (ChatGPT, Claude, Codex) from any MCP client. Remote, private, read-only
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceEnables AI assistants to interact with Mealie recipe databases through MCP clients like Claude Desktop.134MIT
- AlicenseNot gradedqualityBmaintenanceAn MCP server that provides read-only access to the Paprika Recipe Manager, allowing users to list and retrieve recipes, grocery items, and meal plans. It enables seamless interaction with recipe details and category information through the Paprika API.6MIT
- AlicenseNot gradedqualityAmaintenanceMCP server for Paprika recipe manager enabling search, CRUD operations, grocery lists, meal planning, and menus via natural language, with semantic search and background sync.62 npm2MIT
- FlicenseNot gradedqualityBmaintenanceDocker-hosted MCP server for Mealie that enables AI agents to read cookbooks, extract recipes, translate them if needed, store them in Mealie, and verify the results.-