Kadam Ad Network for VS Code
io.github.kadam-official/mcp-server
Kadam advertising platform — manage ads, campaigns, creatives, audiences and stats
client:VS Code
transport:stdio
runtime:npm
Install Kadam Ad Network in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "kadam-adv-api-key",
"description": "KADAM_ADV_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "kadam-pub-api-key",
"description": "KADAM_PUB_API_KEY",
"password": true
}
],
"servers": {
"mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@kadam-net/mcp-server"
],
"env": {
"KADAM_ADV_API_KEY": "${input:kadam-adv-api-key}",
"KADAM_PUB_API_KEY": "${input:kadam-pub-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