llm-oracle for VS Code
io.github.weiseer/llm-oracle
Up-to-date LLM pricing + availability catalog with cited sources for AI agent routing.
client:VS Code
transport:stdio
runtime:npm
Install llm-oracle in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "llm-oracle-url",
"description": "LLM_ORACLE_URL",
"password": true
},
{
"type": "promptString",
"id": "llm-oracle-local-only",
"description": "LLM_ORACLE_LOCAL_ONLY",
"password": true
}
],
"servers": {
"llm-oracle": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@weiseer/llm-oracle-mcp"
],
"env": {
"LLM_ORACLE_URL": "${input:llm-oracle-url}",
"LLM_ORACLE_LOCAL_ONLY": "${input:llm-oracle-local-only}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs