What is the agentmem MCP server?
Governed memory for coding agents. Trust lifecycle, conflict detection, health scoring.
How to install agentmem
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"agentmem": {
"command": "uvx",
"args": [
"quilmem",
"--db",
"--project",
"serve"
]
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"agentmem": {
"command": "uvx",
"args": [
"quilmem",
"--db",
"--project",
"serve"
]
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"agentmem": {
"command": "uvx",
"args": [
"quilmem",
"--db",
"--project",
"serve"
]
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"agentmem": {
"type": "stdio",
"command": "uvx",
"args": [
"quilmem",
"--db",
"--project",
"serve"
]
}
}
}Claude Code
claude mcp add agentmem -- uvx quilmem --db --project serveRelated MCP servers
io.github.Thezenmonster/agentscore
Maintained
MCP security trust layer: scan packages, inspect repos, check exposure, monitor changes.
0
View repository →TypeScript
MIT