jitapi for VS Code
io.github.nk3750/jitapi
Turn any OpenAPI spec into an executable agent interface using graphs and semantic search.
client:VS Code
transport:stdio
runtime:pypi
Install jitapi in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "openai-api-key",
"description": "OPENAI_API_KEY",
"password": true
}
],
"servers": {
"jitapi": {
"type": "stdio",
"command": "uvx",
"args": [
"jitapi"
],
"env": {
"OPENAI_API_KEY": "${input:openai-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