Akamai CDN for VS Code
io.github.desty2k/akamai
Read-only MCP server for Akamai CDN — properties, EdgeWorkers, DNS, network lists
client:VS Code
transport:stdio
runtime:pypi
Install Akamai CDN in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "akamai-host",
"description": "AKAMAI_HOST",
"password": true
},
{
"type": "promptString",
"id": "akamai-client-token",
"description": "AKAMAI_CLIENT_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "akamai-client-secret",
"description": "AKAMAI_CLIENT_SECRET",
"password": true
},
{
"type": "promptString",
"id": "akamai-access-token",
"description": "AKAMAI_ACCESS_TOKEN",
"password": true
}
],
"servers": {
"akamai": {
"type": "stdio",
"command": "uvx",
"args": [
"readonly-mcp-akamai"
],
"env": {
"AKAMAI_HOST": "${input:akamai-host}",
"AKAMAI_CLIENT_TOKEN": "${input:akamai-client-token}",
"AKAMAI_CLIENT_SECRET": "${input:akamai-client-secret}",
"AKAMAI_ACCESS_TOKEN": "${input:akamai-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