propresenter mcp for VS Code
io.github.alxpark/propresenter-mcp
ProPresenter 7 MCP server
client:VS Code
transport:stdio
runtime:npm
Install propresenter mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "propresenter-url",
"description": "PROPRESENTER_URL",
"password": true
},
{
"type": "promptString",
"id": "propresenter-password",
"description": "PROPRESENTER_PASSWORD",
"password": true
}
],
"servers": {
"propresenter-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@alxpark/propresenter-mcp"
],
"env": {
"PROPRESENTER_URL": "${input:propresenter-url}",
"PROPRESENTER_PASSWORD": "${input:propresenter-password}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs