A Streamable-HTTP MCP Server that uses memvid to encode text data into videos that can be quickly looked up with semantic search. Supported Actions: - addchunks: Adds chunks to the memory video. Note: each time you add chunks, it resets the memory.mp4. Unsure if there is a way to incrementally add. - search: queries for the top-matching chunks. Returns 5 by default, but can be changed with topk pa
Add this skill
npx mdskills install ferrants/memvid-mcp-serverEnables semantic search over text via video encoding with clear setup but minimal tool documentation
A Streamable-HTTP MCP Server that uses memvid to encode text data into videos that can be quickly looked up with semantic search.
Supported Actions:
add_chunks: Adds chunks to the memory video. Note: each time you add chunks, it resets the memory.mp4. Unsure if there is a way to incrementally add.search: queries for the top-matching chunks. Returns 5 by default, but can be changed with top_k param.Set up your environment:
python3.11 -m venv my_env
. ./my_env/bin/activate
pip install -r requirements.txt
Run the server:
python server.py
With a custom port:
PORT=3002 python server.py
You can connect a client to your MCP Server once it's running. Configure per the client's configuration. There is the mcp-config.json that has an example configuration that looks like this:
{
"mcpServers": {
"memvid": {
"type": "streamable-http",
"url": "http://localhost:3000"
}
}
}
Install via CLI
npx mdskills install ferrants/memvid-mcp-serverMemvid MCP Server is a free, open-source AI agent skill. A Streamable-HTTP MCP Server that uses memvid to encode text data into videos that can be quickly looked up with semantic search. Supported Actions: - addchunks: Adds chunks to the memory video. Note: each time you add chunks, it resets the memory.mp4. Unsure if there is a way to incrementally add. - search: queries for the top-matching chunks. Returns 5 by default, but can be changed with topk pa
Install Memvid MCP Server with a single command:
npx mdskills install ferrants/memvid-mcp-serverThis downloads the skill files into your project and your AI agent picks them up automatically.
Memvid MCP Server works with Claude Code, Claude Desktop, Cursor, Vscode Copilot, Windsurf, Continue Dev, Gemini Cli, Amp, Roo Code, Goose. Skills use the open SKILL.md format which is compatible with any AI coding agent that reads markdown instructions.