PluginBench
MCP Server
Maintained

RemembrallMCP MCP Server

io.github.cdnsteve/remembrallmcp

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_URL
    required
    secret

    PostgreSQL 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 remembrallmcp

Related MCP servers

Autonomous AI development system with persistent task queue and background execution

View repository →