Skip to content
VS Code

Fidelis Memory for VS Code

io.github.hermes-labs-ai/fidelis-memory

Recall locally stored agent memories through an MCP-compatible host.

client:VS Code transport:stdio runtime:pypi

Install Fidelis Memory in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "fidelis-port",
      "description": "FIDELIS_PORT",
      "password": true
    }
  ],
  "servers": {
    "fidelis-memory": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "fidelis-memory"
      ],
      "env": {
        "FIDELIS_PORT": "${input:fidelis-port}"
      }
    }
  }
}

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

Fidelis Memory in other clients