mcp for VS Code
com.hushvert/mcp
File conversion for AI agents: office docs, PDF to Word, video, and LLM-ready markdown via API.
client:VS Code
transport:stdio
runtime:npm
Install mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "hushvert-api-key",
"description": "HUSHVERT_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "hushvert-allowed-dir",
"description": "HUSHVERT_ALLOWED_DIR",
"password": true
}
],
"servers": {
"mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@hushvert/mcp"
],
"env": {
"HUSHVERT_API_KEY": "${input:hushvert-api-key}",
"HUSHVERT_ALLOWED_DIR": "${input:hushvert-allowed-dir}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs