portkey admin mcp for VS Code
io.github.codeswhat/portkey-admin-mcp
Portkey Admin API control-plane MCP server with Prisma AIRS interoperability guidance.
client:VS Code
transport:stdio
runtime:npm
Install portkey admin mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "portkey-api-key",
"description": "PORTKEY_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "portkey-tool-domains",
"description": "PORTKEY_TOOL_DOMAINS",
"password": true
},
{
"type": "promptString",
"id": "portkey-base-url",
"description": "PORTKEY_BASE_URL",
"password": true
}
],
"servers": {
"portkey-admin-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"portkey-admin-mcp"
],
"env": {
"PORTKEY_API_KEY": "${input:portkey-api-key}",
"PORTKEY_TOOL_DOMAINS": "${input:portkey-tool-domains}",
"PORTKEY_BASE_URL": "${input:portkey-base-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs