mcp for VS Code
online.clipy/mcp
Read your Clipy screen recordings: search, transcripts, AI summaries, and key moments with frames.
client:VS Code
transport:stdio
runtime:npm
Install mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "clipy-api-key",
"description": "CLIPY_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "clipy-api-url",
"description": "CLIPY_API_URL",
"password": true
}
],
"servers": {
"mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@clipy/mcp"
],
"env": {
"CLIPY_API_KEY": "${input:clipy-api-key}",
"CLIPY_API_URL": "${input:clipy-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs