image resolver for VS Code
io.github.ahmaddioxide/image-resolver
MCP server for context-aware royalty-free image search from Pexels and Unsplash
client:VS Code
transport:stdio
runtime:npm
Install image resolver in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "pexels-api-key",
"description": "PEXELS_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "unsplash-access-key",
"description": "UNSPLASH_ACCESS_KEY",
"password": true
}
],
"servers": {
"image-resolver": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@ahmaddioxide/mcp-image-resolver"
],
"env": {
"PEXELS_API_KEY": "${input:pexels-api-key}",
"UNSPLASH_ACCESS_KEY": "${input:unsplash-access-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs