Create and save recipes in Paprika with natural language!
A Model Context Protocol (MCP) server that exposes your Paprika 3 recipes as LLM-readable resources — and lets an LLM like Claude create or update recipes in your Paprika app.
See anything missing? Open an issue on this repo to request a feature!
create_paprika_recipe
update_paprika_recipe
You can download a prebuilt binary from the Releases page.
If you're on macOS, the easiest way to install is with Homebrew:
brew tap soggycactus/tap brew install paprika-3-mcp
Go to the latest release.
Download the appropriate archive for your operating system and architecture:
paprika-3-mcp__linux_amd64.zip
for Linuxpaprika-3-mcp__windows_amd64.zip
for WindowsExtract the zip archive:
unzip paprika-3-mcp___.zip
.zip
file and select Extract All, or use a tool like 7-Zip.Move the binary to a directory in your system's $PATH
:
Linux:
sudo mv paprika-3-mcp /usr/local/bin/
Windows:
paprika-3-mcp.exe
to any folder in your PATH
(e.g., %USERPROFILE%\bin
)You can verify the server is installed by checking:
paprika-3-mcp --version
You should see:
paprika-3-mcp version v0.1.0
If you haven't setup MCP before, first read more about how to install Claude Desktop client & configure an MCP server.
To add paprika-3-mcp
to Claude, all you need to do is create another entry in the mcpServers
section of your claude_desktop_config.json
file:
{ "mcpServers": { "paprika-3": { "command": "paprika-3-mcp", "args": [ "--username", "", "--password", "" ] } } }
Restart Claude and you should see the MCP server tools after clicking on the hammerhead icon:
This project is open source under the MIT License © 2025 Lucas Stephens.
The MCP server writes structured logs using Go’s slog
with rotation via lumberjack
. Log files are automatically created based on your operating system:
Operating System | Log File Path |
---|---|
macOS | ~/Library/Logs/paprika-3-mcp/server.log |
Linux | /var/log/paprika-3-mcp/server.log |
Windows | %APPDATA%\paprika-3-mcp\server.log |
Other / Unknown | /tmp/paprika-3-mcp/server.log |
💡 Logs are rotated automatically at 100MB, with only 5 backup files kept. Logs are also wiped after 10 days.
Discover shared experiences
Shared threads will appear here, showcasing real-world applications and insights from the community. Check back soon for updates!