adtest mcp for VS Code
ai.adtest/adtest-mcp
AI-only ad scoring for Claude: score image, video or text ads on 13 dimensions before you spend.
client:VS Code
transport:stdio
runtime:npm
Install adtest mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "adtest-api-key",
"description": "ADTEST_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "adtest-api-base",
"description": "ADTEST_API_BASE",
"password": true
},
{
"type": "promptString",
"id": "adtest-poll-timeout-ms",
"description": "ADTEST_POLL_TIMEOUT_MS",
"password": true
}
],
"servers": {
"adtest-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"adtest-mcp"
],
"env": {
"ADTEST_API_KEY": "${input:adtest-api-key}",
"ADTEST_API_BASE": "${input:adtest-api-base}",
"ADTEST_POLL_TIMEOUT_MS": "${input:adtest-poll-timeout-ms}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs