Skip to content
VS Code

thrd for VS Code

io.github.sergiorico1/thrd

Thrd MCP: agent email tools for events/threads, safe send/reply, usage, trust and security.

client:VS Code transport:stdio runtime:npm

Install thrd in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "thrd-api-key",
      "description": "THRD_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "thrd-api-base-url",
      "description": "THRD_API_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "thrd": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "thrd-mcp"
      ],
      "env": {
        "THRD_API_KEY": "${input:thrd-api-key}",
        "THRD_API_BASE_URL": "${input:thrd-api-base-url}"
      }
    }
  }
}

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

thrd in other clients