What is the RemembrallMCP MCP server?
Persistent knowledge memory for AI agents. Hybrid search, code graph, pgvector.
How to install RemembrallMCP
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
DATABASE_URLrequiredsecretPostgreSQL connection string with pgvector extension
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"remembrallmcp": {
"command": "npx",
"args": [
"-y",
"remembrallmcp"
],
"env": {
"DATABASE_URL": "<YOUR_DATABASE_URL>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"remembrallmcp": {
"command": "npx",
"args": [
"-y",
"remembrallmcp"
],
"env": {
"DATABASE_URL": "<YOUR_DATABASE_URL>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"remembrallmcp": {
"command": "npx",
"args": [
"-y",
"remembrallmcp"
],
"env": {
"DATABASE_URL": "<YOUR_DATABASE_URL>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"remembrallmcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"remembrallmcp"
],
"env": {
"DATABASE_URL": "<YOUR_DATABASE_URL>"
}
}
}
}Claude Code
claude mcp add remembrallmcp --env DATABASE_URL=<YOUR_DATABASE_URL> -- npx -y remembrallmcpRelated MCP servers
Autonomous AI development system with persistent task queue and background execution
View repository →