A Claude plugin marketplace with one plugin, recipe-publisher, which lets Claude publish recipes from a conversation to a private bilingual (German/English) recipe website.
In the Claude app (web or desktop):
-
Customize → Plugins
-
In Personal plugins, click + → Add marketplace
-
Choose Add from a repository and enter:
https://github.com/rennerdo30/kochbuch-plugin -
Install recipe-publisher
In Claude Code:
/plugin marketplace add rennerdo30/kochbuch-plugin
/plugin install recipe-publisher@rennerdo30-kitchen
/reload-pluginsThe plugin ships a skill — the conventions for writing a recipe: how to translate it, how to structure ingredients so the site can scale them, which tags to use. Skills work in Claude chat, in the desktop app, and in Cowork.
A skill cannot reach a website on its own. The thing that actually writes recipes is the connector (a remote MCP server). Set it up once:
- Settings → Connectors → Add custom connector
- URL: your deployment's
/api/mcpendpoint - Under request headers, add
Authorizationwith the valueBearer <your token>
In Claude Code this step is unnecessary — plugins/recipe-publisher/.mcp.json is
used directly, reading the token from the RECIPES_MCP_TOKEN environment variable.
| Tool | Purpose |
|---|---|
publish_recipe |
Add a recipe, in German and English, with structured ingredients and steps |
update_recipe |
Change part of a recipe, or add a missing translation |
list_recipes |
See what is already published; filter by tag or search text |
get_recipe |
Read one recipe in full, in every language it exists in |
delete_recipe |
Remove a recipe (requires explicit confirmation) |
This repository contains only the plugin. The website and its MCP server are a
separate Next.js project — see
plugins/recipe-publisher/README.md for how
the two halves fit together.