orion for VS Code
io.github.goplasmatic/orion
Build and operate declarative REST/Kafka services on Orion: 58 tools over the full admin API.
client:VS Code
transport:stdio
runtime:oci
Install orion in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "orion-server-url",
"description": "ORION_SERVER_URL",
"password": true
},
{
"type": "promptString",
"id": "orion-api-key",
"description": "ORION_API_KEY",
"password": true
}
],
"servers": {
"orion": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/goplasmatic/orion-cli:1.1.0"
],
"env": {
"ORION_SERVER_URL": "${input:orion-server-url}",
"ORION_API_KEY": "${input:orion-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