Exogram Authority Runtime for VS Code
io.github.richard-ewing/exogram
Model Context Protocol server for the Exogram Authority Runtime.
client:VS Code
transport:stdio
runtime:pypi
Install Exogram Authority Runtime in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "exogram-bearer-token",
"description": "EXOGRAM_BEARER_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "exogram-api-url",
"description": "EXOGRAM_API_URL",
"password": true
}
],
"servers": {
"exogram": {
"type": "stdio",
"command": "uvx",
"args": [
"mcp-server-exogram"
],
"env": {
"EXOGRAM_BEARER_TOKEN": "${input:exogram-bearer-token}",
"EXOGRAM_API_URL": "${input:exogram-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs