AtlaSent MCP Server for VS Code
io.github.atlasent/mcp-server
Authorize-before-execute for AI agents: evaluate an action, get a permit, verify it before running.
client:VS Code
transport:stdio
runtime:npm
Install AtlaSent MCP Server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "atlasent-api-key",
"description": "ATLASENT_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "atlasent-base-url",
"description": "ATLASENT_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "atlasent-mode",
"description": "ATLASENT_MODE",
"password": true
}
],
"servers": {
"mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@atlasent/mcp-server"
],
"env": {
"ATLASENT_API_KEY": "${input:atlasent-api-key}",
"ATLASENT_BASE_URL": "${input:atlasent-base-url}",
"ATLASENT_MODE": "${input:atlasent-mode}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs