picright for VS Code
io.github.chloepark85/picright
License-aware images for markdown: CC/stock search, screenshots, Mermaid diagrams, provenance
client:VS Code
transport:stdio
runtime:npm
Install picright in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "pixabay-api-key",
"description": "PIXABAY_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "pexels-api-key",
"description": "PEXELS_API_KEY",
"password": true
}
],
"servers": {
"picright": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"picright-mcp"
],
"env": {
"PIXABAY_API_KEY": "${input:pixabay-api-key}",
"PEXELS_API_KEY": "${input:pexels-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