DOWNLOAD
Rohrpost Claude Plugin
Install Rohrpost memory into Claude Code or Claude Desktop with a single command. The plugin registers the MCP server, installs skills, and configures lifecycle hooks automatically.
Quick Install
Run this command in your terminal to download and install the plugin for your platform:
curl -fsSL https://rohrpost.io/install.sh | shAfter installation, configure the plugin with your gateway URL and token:
rohrpost-plugin install --gateway-url https://your-gateway.example.com --token YOUR_API_TOKENDownload Binary
Detecting your platform...
SHA-256 Checksums
Verify the integrity of your download:
| Platform | Filename | SHA-256 |
|---|---|---|
| Loading checksums... | ||
Installation Instructions
1. Download or install via script
Use the one-liner above, or download the binary for your platform and make it executable:
chmod +x rohrpost-plugin-linux-x86_64
sudo mv rohrpost-plugin-linux-x86_64 /usr/local/bin/rohrpost-plugin2. Run the installer
Point the plugin at your Rohrpost gateway and provide your API token:
rohrpost-plugin install --gateway-url http://localhost:7878 --token YOUR_API_TOKENThis registers the MCP server in your Claude configuration, installs the skill file, and configures lifecycle hooks for automatic context capture.
3. Verify the installation
Run the doctor command to confirm everything is set up correctly:
rohrpost-plugin doctor4. Start using Rohrpost in Claude
Open Claude Code or Claude Desktop. The Rohrpost MCP tools are now available automatically. Claude will use rohrpost_preflight before complex tasks androhrpost_ingest to capture important context.
5. Backfill your existing history (optional, recommended)
A brand new tenant has nothing to recall yet. If you've already been using Claude Code on this project, import your prior sessions so Rohrpost starts warm instead of empty — this reads only local transcripts already on your machine, previews what it found, and asks for confirmation before sending anything:
rohrpost-plugin import-history --dry-runLooks right? Drop --dry-run to actually import:
rohrpost-plugin import-historyAdditional Options
- Switch profiles: Use
rohrpost-plugin profile use productionto switch between local and remote gateways. - Update token: Use
rohrpost-plugin token set NEW_TOKENto update your API token without reinstalling. - Uninstall: Use
rohrpost-plugin uninstallto cleanly remove all plugin configuration. Add--purgeto also remove stored tokens. - Import more history:
rohrpost-plugin import-history --limit 2000imports further back (default limit is 500 messages per run); pass--project /path/to/repoto backfill a different project than the current directory.