mcp for VS Code
io.github.truetick-gg/mcp
Manage TrueTick Minecraft servers from AI: start/stop, live TPS, console, files, backups, mods.
client:VS Code
transport:stdio
runtime:npm
Install mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "truetick-api-key",
"description": "TRUETICK_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "truetick-api-url",
"description": "TRUETICK_API_URL",
"password": true
}
],
"servers": {
"mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@truetick/mcp"
],
"env": {
"TRUETICK_API_KEY": "${input:truetick-api-key}",
"TRUETICK_API_URL": "${input:truetick-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs