Skip to content
VS Code

Afterpaths for VS Code

io.github.burnssa/afterpaths

Session memory for AI coding agents. Search past sessions, extract rules, and track what works.

client:VS Code transport:stdio runtime:pypi

Install Afterpaths in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "anthropic-api-key",
      "description": "ANTHROPIC_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "openai-api-key",
      "description": "OPENAI_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "afterpaths": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "afterpaths"
      ],
      "env": {
        "ANTHROPIC_API_KEY": "${input:anthropic-api-key}",
        "OPENAI_API_KEY": "${input:openai-api-key}"
      }
    }
  }
}

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

Afterpaths in other clients