altr mcp server for VS Code
io.github.altrsoftware/altr-mcp-server
MCP server for ALTR data security: databases, tags, policies, classification, access, audits
client:VS Code
transport:stdio
runtime:pypi
Install altr mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "org-id",
"description": "ORG_ID",
"password": true
},
{
"type": "promptString",
"id": "mapi-key",
"description": "MAPI_KEY",
"password": true
},
{
"type": "promptString",
"id": "mapi-secret",
"description": "MAPI_SECRET",
"password": true
}
],
"servers": {
"altr-mcp-server": {
"type": "stdio",
"command": "uvx",
"args": [
"altr-mcp"
],
"env": {
"ORG_ID": "${input:org-id}",
"MAPI_KEY": "${input:mapi-key}",
"MAPI_SECRET": "${input:mapi-secret}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs