plugins marketplace
← All plugins

openviking-memory

v0.4.4

Long-term semantic memory for Claude Code, powered by OpenViking. Auto-recall relevant memories at session start and capture important information during conversations.

Claude Code1 MCP serverstdio

by OpenVikingApache-2.028.1kupdated 1 day ago

Source

git clone https://github.com/volcengine/OpenViking

Clone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is examples/claude-code-memory-plugin/ inside the repository.

Layout

examples/claude-code-memory-plugin/
├── .claude-plugin/plugin.json
└── .mcp.json

MCP servers1

openvikingstdio
command
node
args
${CLAUDE_PLUGIN_ROOT}/servers/mcp-proxy.mjs

MCP configuration uses runtime-provided plugin path placeholders such as ${PLUGIN_ROOT} or ${CLAUDE_PLUGIN_ROOT}. Review the manifest for the runtime-specific expansion rules.

Manifests1

examples/claude-code-memory-plugin/.claude-plugin/plugin.json
{
  "name": "openviking-memory",
  "version": "0.4.4",
  "description": "Long-term semantic memory for Claude Code, powered by OpenViking. Auto-recall relevant memories at session start and capture important information during conversations.",
  "author": {
    "name": "OpenViking",
    "url": "https://github.com/volcengine/OpenViking"
  },
  "repository": "https://github.com/volcengine/OpenViking",
  "license": "Apache-2.0",
  "keywords": [
    "memory",
    "openviking",
    "semantic-search",
    "long-term-memory",
    "context-engine"
  ],
  "mcpServers": "./.mcp.json"
}