apple ads for VS Code
io.github.happygallo/apple-ads
Manage Apple Search Ads campaigns, keywords, budgets, and reports via API v5.
client:VS Code
transport:stdio
runtime:npm
Install apple ads in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "asa-client-id",
"description": "ASA_CLIENT_ID",
"password": true
},
{
"type": "promptString",
"id": "asa-team-id",
"description": "ASA_TEAM_ID",
"password": true
},
{
"type": "promptString",
"id": "asa-key-id",
"description": "ASA_KEY_ID",
"password": true
},
{
"type": "promptString",
"id": "asa-private-key-path",
"description": "ASA_PRIVATE_KEY_PATH",
"password": true
},
{
"type": "promptString",
"id": "asa-org-id",
"description": "ASA_ORG_ID",
"password": true
}
],
"servers": {
"apple-ads": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"apple-ads-mcp"
],
"env": {
"ASA_CLIENT_ID": "${input:asa-client-id}",
"ASA_TEAM_ID": "${input:asa-team-id}",
"ASA_KEY_ID": "${input:asa-key-id}",
"ASA_PRIVATE_KEY_PATH": "${input:asa-private-key-path}",
"ASA_ORG_ID": "${input:asa-org-id}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs