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
1# memvid-mcp-server234A Streamable-HTTP MCP Server that uses [memvid](https://github.com/Olow304/memvid) to encode text data into videos that can be quickly looked up with semantic search.567Supported Actions:8- `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.9- `search`: queries for the top-matching chunks. Returns 5 by default, but can be changed with top_k param.1011## Running1213Set up your environment:14```bash15python3.11 -m venv my_env16. ./my_env/bin/activate17pip install -r requirements.txt18```1920Run the server:21```bash22python server.py23```2425With a custom port:2627```bash28PORT=3002 python server.py29```3031## Connect a Client3233You can connect a client to your MCP Server once it's running. Configure per the client's configuration. There is the [mcp-config.json](/mcp-config.json) that has an example configuration that looks like this:34```json35{36 "mcpServers": {37 "memvid": {38 "type": "streamable-http",39 "url": "http://localhost:3000"40 }41 }42}43```4445### Acknowledgements4647- Obviously the modelcontextprotocol and Anthropic teams for the MCP Specification. [https://modelcontextprotocol.io/introduction](https://modelcontextprotocol.io/introduction)48- [HeyFerrante](https://heyferrante.com?ref=github-memvid-mcp-server) for enabling and sponsoring this project.49
Full transparency — inspect the skill content before installing.