GuildControl MCP for VS Code
app.lasers.guildcontrol/discord
Safety-first MCP server for Discord with privacy-safe reads, audits, and reviewed administration
client:VS Code
transport:stdio
runtime:npm
Install GuildControl MCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "discord-bot-token",
"description": "DISCORD_BOT_TOKEN",
"password": true
}
],
"servers": {
"discord": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"guildctl"
],
"env": {
"DISCORD_BOT_TOKEN": "${input:discord-bot-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs