alphakey mcp server for VS Code
io.github.seyoung230/alphakey-mcp-server
AlphaKey IDaaS MCP Server — Manage SSO, MFA, users, apps, and security policies through AI IDE
client:VS Code
transport:stdio
runtime:pypi
Install alphakey mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "alphakey-base-url",
"description": "ALPHAKEY_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "alphakey-token",
"description": "ALPHAKEY_TOKEN",
"password": true
}
],
"servers": {
"alphakey-mcp-server": {
"type": "stdio",
"command": "uvx",
"args": [
"alphakey-mcp-server"
],
"env": {
"ALPHAKEY_BASE_URL": "${input:alphakey-base-url}",
"ALPHAKEY_TOKEN": "${input:alphakey-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs