Skip to content
VS Code

tokenmizer for VS Code

io.github.shweta-mishra-ai/tokenmizer

Graph-backed session memory for LLMs: checkpoint, resume, file analysis, token-savings stats.

client:VS Code transport:stdio runtime:pypi

Install tokenmizer in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "tokenmizer-url",
      "description": "TOKENMIZER_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "tokenmizer-api-key",
      "description": "TOKENMIZER_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "tokenmizer": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "tokenmizer"
      ],
      "env": {
        "TOKENMIZER_URL": "${input:tokenmizer-url}",
        "TOKENMIZER_API_KEY": "${input:tokenmizer-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

tokenmizer in other clients