Back to Catalog

memvid-mcp-server

ferrants/memvid-mcp-server
🔗 Latest commit:ebb5ff4
🕒 Updated:Sep 9, 2025, 01:05 PM
Python
AI Tools

A Streamable HTTP MCP Server for Memvid

MCP Trust Score
Based on our comprehensive evaluation criteria
🤖 Evaluated by gemini-2.5-flashFix
Trust Score20/100
GitHub Metrics
Repository statistics and activity
⭐ GitHub Stars:4
👥 Contributors:1
📋 Total Issues:0
📦 Has Releases:No
🔧 Has CI/CD Pipeline:No
Configuration
Configuration example extracted from README.md for Claude Desktop and other clients.
🤖 Evaluated by gemini-2.5-flashFix
{
  "memvid-mcp-server": {
    "command": "python",
    "args": [
      "server.py"
    ],
    "env": {}
  },
  "memvid-mcp-server-configured": {
    "command": "python",
    "args": [
      "server.py"
    ],
    "env": {
      "PORT": "3002"
    }
  }
}
MCP Protocol Support
Implemented MCP protocol features
🤖 Evaluated by gemini-2.5-flashFix
Tools:
Prompts:
Resources:
Sampling:
Roots:
Logging:
STDIO Transport:
HTTP Transport:
OAuth2 Auth:
Dependencies
75 dependencies
Libraries and frameworks used by this MCP server
🤖 Evaluated by gemini-2.5-flashFix
Add Quality Badge
Show your MCP trust score in your README
Trust Score Badge
[![Trust Score](https://archestra.ai/mcp-catalog/api/badge/quality/ferrants/memvid-mcp-server)](https://archestra.ai/mcp-catalog/ferrants__memvid-mcp-server)
README.md

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

memvid-mcp-server MCP Server | Documentation & Integration | Archestra