Skip to content
VS Code

agent memory mcp for VS Code

io.github.kira-autonoma/agent-memory-mcp

Agent memory MCP server with provenance tracking, decay-weighted recall, and feedback loops.

client:VS Code transport:stdio runtime:npm

Install agent memory mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "memory-db-path",
      "description": "MEMORY_DB_PATH",
      "password": true
    }
  ],
  "servers": {
    "agent-memory-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@kiraautonoma/agent-memory-mcp"
      ],
      "env": {
        "MEMORY_DB_PATH": "${input:memory-db-path}"
      }
    }
  }
}

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

agent memory mcp in other clients