prexist for VS Code
io.github.rishabhkodes/prexist
Search across 9 platforms to find existing products similar to your idea.
client:VS Code
transport:stdio
runtime:npm
Install prexist in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "prexist-api-url",
"description": "PREXIST_API_URL",
"password": true
},
{
"type": "promptString",
"id": "skills-directory-api-key",
"description": "SKILLS_DIRECTORY_API_KEY",
"password": true
}
],
"servers": {
"prexist": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"prexist"
],
"env": {
"PREXIST_API_URL": "${input:prexist-api-url}",
"SKILLS_DIRECTORY_API_KEY": "${input:skills-directory-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