An MCP server that provides persistent multimodal context storage for LLM agents.
Runs locally over stdio
This server isn't hosted — your MCP client launches it from a package registry. Use one of the commands below, or drop the config into your client (e.g. Claude Desktop).
Run
uvx mcp-context-server
MCP client config
{
"mcpServers": {
"mcp-context-server": {
"command": "uvx",
"args": [
"mcp-context-server"
]
}
}
}Run
docker run -i --rm ghcr.io/alex-feel/mcp-context-server:2.2.2
MCP client config
{
"mcpServers": {
"mcp-context-server": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/alex-feel/mcp-context-server:2.2.2"
]
}
}
}