vk for VS Code
io.github.bulatko/vk
VK (VKontakte): read walls, users, communities and stats; publish, edit and comment on posts.
client:VS Code
transport:stdio
runtime:npm
Install vk in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "vk-access-token",
"description": "VK_ACCESS_TOKEN",
"password": true
}
],
"servers": {
"vk": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"vk-mcp-server"
],
"env": {
"VK_ACCESS_TOKEN": "${input:vk-access-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs