logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

memvid-mcp-server

Python Streamable HTTP Server you can run locally to interact with [memvid](https://github.com/Olow304/memvid) storage and semantic search.

Author

MCP Server

ferrants

Other

Quick Info

GitHub GitHub Stars 4
NPM Weekly Downloads 0
Tools 1
Last Updated 2026-02-19

Tags

databasesdatabasememvidmemvid storagesecure databasedatabase access

memvid-mcp-server

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.

Running

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

Connect a Client

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"
    }
  }
}

Acknowledgements

See Also

`