lorem for VS Code
io.github.ankitashanbhag30/lorem
Slide decks over MCP: read and write decks as code, run Lorem's full AI pipeline, export PPTX/PDF.
client:VS Code
transport:stdio
runtime:npm
Install lorem in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "lorem-url",
"description": "LOREM_URL",
"password": true
},
{
"type": "promptString",
"id": "lorem-api-key",
"description": "LOREM_API_KEY",
"password": true
}
],
"servers": {
"lorem": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"lorem-mcp"
],
"env": {
"LOREM_URL": "${input:lorem-url}",
"LOREM_API_KEY": "${input:lorem-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