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
- Obviously the modelcontextprotocol and Anthropic teams for the MCP Specification. https://modelcontextprotocol.io/introduction
- HeyFerrante for enabling and sponsoring this project.
Recommend MCP Servers 💡
mcp_plexus
A secure, multi-tenant MCP server framework for building AI backend systems with external service integration
iflytek/ifly-workflow-mcp-server
This a simple implementation of an MCP server using iFlytek. It enables calling iFlytek workflows through MCP tools.
Bright Data MCP Server
Bright Data MCP Server enables LLMs, AI agents, and apps to access, search, crawl, and navigate real-time web data without getting blocked.
@codacy/codacy-mcp
Codacy's MCP Server provides access to the Codacy API, enabling AI models to interact with repositories, analyze code quality, security, coverage, and manage files and pull requests.
agentrpc
AgentRPC is a universal RPC layer for AI agents, enabling them to connect to any function in any language across network boundaries. It wraps your functions in a universal RPC interface and provides a hosted Model Context Protocol (MCP) server, ideal for integrating services deployed in private VPCs, Kubernetes clusters, or multiple cloud environments.
linear-mcp-server
A server that integrates Linear's project management system with the Model Context Protocol (MCP) to allow LLMs to interact with Linear.