Skip to content
VS Code

Samuraizer for VS Code

io.github.uladzkha/samuraizer

Local MCP server for meeting transcripts, summaries, action items & decisions — no cloud.

client:VS Code transport:stdio runtime:npm

Install Samuraizer in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "samuraizer-meetings-dir",
      "description": "SAMURAIZER_MEETINGS_DIR",
      "password": true
    }
  ],
  "servers": {
    "samuraizer": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@samuraizer/mcp-server"
      ],
      "env": {
        "SAMURAIZER_MEETINGS_DIR": "${input:samuraizer-meetings-dir}"
      }
    }
  }
}

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

Samuraizer in other clients