AitherOS ADK for VS Code
io.github.aitherium/aither-adk
Agent runtime with typed memory, knowledge and code graphs, plus file and web tools
client:VS Code
transport:stdio
runtime:pypi
Install AitherOS ADK in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "aitheridentity-url",
"description": "AITHERIDENTITY_URL",
"password": true
},
{
"type": "promptString",
"id": "aitherium-api-key",
"description": "AITHERIUM_API_KEY",
"password": true
}
],
"servers": {
"aither-adk": {
"type": "stdio",
"command": "uvx",
"args": [
"aither-adk"
],
"env": {
"AITHERIDENTITY_URL": "${input:aitheridentity-url}",
"AITHERIUM_API_KEY": "${input:aitherium-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs