Skip to content
VS Code

welcome text generator mcp for VS Code

io.github.goodfel10w/welcome-text-generator-mcp

MCP Server für automatische Generierung professioneller Willkommenstexte für neue Mitarbeiter

client:VS Code transport:stdio runtime:npm

Install welcome text generator mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "your-api-key",
      "description": "YOUR_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "welcome-text-generator-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "welcome-text-generator-mcp"
      ],
      "env": {
        "YOUR_API_KEY": "${input:your-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

welcome text generator mcp in other clients