orita provider resolution for VS Code
io.github.alkilo-do/orita-provider-resolution
Provider resolution for AI apps — search, rank, hold, confirm bookings across your provider network.
client:VS Code
transport:stdio
runtime:pypi
Install orita provider resolution in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "orita-api-key",
"description": "ORITA_API_KEY",
"password": true
}
],
"servers": {
"orita-provider-resolution": {
"type": "stdio",
"command": "uvx",
"args": [
"orita-mcp"
],
"env": {
"ORITA_API_KEY": "${input:orita-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