๐ŸŽฌ Memvid MCP Server

A Model Context Protocol (MCP) server that provides video-based AI memory storage for LLM agents. Built with memvid - store millions of text chunks in MP4 files with lightning-fast semantic search.

MCP Server URL

https://eldarski-memvid-mcp-server.hf.space/gradio_api/mcp/sse

For local development: http://localhost:7860/gradio_api/mcp/sse

Available MCP Tools

๐ŸŽฌ Memory Operations

  • store_memory: Store text chunks in video memory
  • build_memory_video: Build MP4 memory from stored chunks
  • search_memory: Semantic search in memory videos
  • chat_with_memory: Interactive chat with memory
  • list_memories: List all memories for a client
  • get_memory_stats: Get memory usage statistics
  • delete_memory: Delete specific memory videos
  • store_document: Store document content in memory

๐Ÿค— HuggingFace Dataset Integration

  • save_to_hf_dataset: Save all client data to specific HF dataset
  • load_from_hf_dataset: Load client data from specific HF dataset
  • list_hf_datasets: List available HF datasets for current user
  • create_hf_dataset: Create new HF dataset for memory storage
  • get_storage_info: Get HuggingFace storage connection status
  • backup_client_data: Backup client data to default HF dataset
  • restore_client_data: Restore client data from default HF dataset

Integration

To add this MCP server to clients that support SSE (e.g. Cursor, Claude Desktop, Cline), add this configuration:

{
    "mcpServers": {
        "memvid-server": {
            "url": "https://eldarski-memvid-mcp-server.hf.space/gradio_api/mcp/sse"
        }
    }
}

For local development, use: http://localhost:7860/gradio_api/mcp/sse

How It Works

  1. Store Memory: Add text chunks that will be embedded and stored
  2. Build Video: Create an MP4 file containing all stored chunks with embeddings
  3. Search: Use semantic similarity to find relevant memories
  4. Chat: Interactive conversation with your stored memories

Each client gets isolated storage with their own memory videos.

Store text chunks and build memory videos