This repository hosts the official Claude Code plugin marketplace published by the MemoryStore organization. It currently ships three channels:
- memory-store-beta – full functionality backed by the beta Memory Store deployment.
- memory-store-stable – placeholder that notifies installers when the production channel is ready.
- memory-store-local – mirrors the beta feature set while pointing to a localhost MCP server for rapid iteration.
.claude-plugin/marketplace.json– marketplace manifest with both channel entries.memory-store-beta/– beta plugin assets (.claude-plugin/plugin.json, commands, agents, hooks,.mcp.json).memory-store-stable/– stable placeholder with guarded manifest and future asset stubs.memory-store-local/– local development plugin mirroring the beta commands and hooks but defaulting tohttp://localhost:8000/mcp.shared/– instruction bundles and other shared assets referenced by both channels.specs/001-memory-store-claude-code-plugins/– spec-driven documentation (spec, plan, tasks, research, design artifacts).CHANGELOG.md– release history for marketplace updates.
- Add the marketplace:
Review the installed README for instructions directing you back to the beta channel until GA.
claude /plugin marketplace add MemoryStore/plugins
- Install the beta plugin:
claude /plugin install memory-store-beta@memory-store-marketplaceOr install the local development plugin:
claude /plugin install memory-store-local@memory-store-marketplace-
Configure plugin settings inside Claude Code (
/plugin settings) for the selected channel:- For
memory-store-beta@memory-store-marketplaceconfirm or adjust:memoryStoreBaseUrl=https://beta.memory.store/mcp- Optional
memoryStoreDefaultRecallDepth
- For
memory-store-local@memory-store-marketplaceconfirm:memoryStoreBaseUrl=http://localhost:8000/mcp- Optional
memoryStoreDefaultRecallDepth
Authentication for all channels now flows through the Memory Store OAuth experience presented by the MCP server—no API tokens are required in plugin settings.
- For
-
List commands to confirm installation:
claude /plugin
-
The stable plugin currently installs placeholder assets for awareness:
claude /plugin install memory-store-stable@memory-store-marketplace
- Update plugin versions and marketplace metadata together.
- Regenerate documentation (specs, quickstart) if workflows change.
- Run
claude --debugto validate manifests before tagging a release. - Record changes in
CHANGELOG.md.