Skip to content
VS Code

RE-call MCP Memory Server for VS Code

io.github.giulioder/re-call

Agent memory on your own Postgres that flags superseded facts and abstains instead of guessing.

client:VS Code transport:stdio runtime:pypi

Install RE-call MCP Memory Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "recall-serving-dsn",
      "description": "RECALL_SERVING_DSN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "recall-tenant",
      "description": "RECALL_TENANT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "recall-trust-mode",
      "description": "RECALL_TRUST_MODE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "recall-embedder",
      "description": "RECALL_EMBEDDER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "recall-table",
      "description": "RECALL_TABLE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "recall-mcp-tools",
      "description": "RECALL_MCP_TOOLS",
      "password": true
    }
  ],
  "servers": {
    "re-call": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "recall-rag"
      ],
      "env": {
        "RECALL_SERVING_DSN": "${input:recall-serving-dsn}",
        "RECALL_TENANT": "${input:recall-tenant}",
        "RECALL_TRUST_MODE": "${input:recall-trust-mode}",
        "RECALL_EMBEDDER": "${input:recall-embedder}",
        "RECALL_TABLE": "${input:recall-table}",
        "RECALL_MCP_TOOLS": "${input:recall-mcp-tools}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

RE-call MCP Memory Server in other clients