Adrex AI for VS Code
io.github.gauravapiscean/adrex-ai
Open-source MCP server for Google Ads & Meta Ads — manage campaigns from any AI assistant.
client:VS Code
transport:stdio
runtime:npm
Install Adrex AI in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "adrex-api-key",
"description": "ADREX_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "adrex-api-url",
"description": "ADREX_API_URL",
"password": true
}
],
"servers": {
"adrex-ai": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"adrex-ai"
],
"env": {
"ADREX_API_KEY": "${input:adrex-api-key}",
"ADREX_API_URL": "${input:adrex-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