clarifyprompt for VS Code
io.github.lumabyteco/clarifyprompt
AI prompt optimization for 58+ platforms across 7 categories with custom platforms
client:VS Code
transport:stdio
runtime:npm
Install clarifyprompt in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "llm-api-url",
"description": "LLM_API_URL",
"password": true
},
{
"type": "promptString",
"id": "llm-api-key",
"description": "LLM_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "llm-model",
"description": "LLM_MODEL",
"password": true
}
],
"servers": {
"clarifyprompt": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"clarifyprompt-mcp"
],
"env": {
"LLM_API_URL": "${input:llm-api-url}",
"LLM_API_KEY": "${input:llm-api-key}",
"LLM_MODEL": "${input:llm-model}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs