Skip to content
VS Code

agent trading journal for VS Code

io.github.smizxe/agent-trading-journal

AI trading journal: your agent logs trades from chart screenshots and checks your own rules.

client:VS Code transport:stdio runtime:npm

Install agent trading journal in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "journal-data-dir",
      "description": "JOURNAL_DATA_DIR",
      "password": true
    }
  ],
  "servers": {
    "agent-trading-journal": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "agent-trading-journal"
      ],
      "env": {
        "JOURNAL_DATA_DIR": "${input:journal-data-dir}"
      }
    }
  }
}

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

agent trading journal in other clients