yourimageshare for VS Code
io.github.mediashareorg/yourimageshare
MCP server exposing the YourImageShare upload API (upload/list/delete) as tools for AI agents.
client:VS Code
transport:stdio
runtime:npm
Install yourimageshare in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "yis-api-key",
"description": "YIS_API_KEY",
"password": true
}
],
"servers": {
"yourimageshare": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"yourimageshare-mcp"
],
"env": {
"YIS_API_KEY": "${input:yis-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