OpenBrand for VS Code
io.github.ethanjyx/openbrand
Extract brand assets (logos, colors, backdrop images, brand name) from any website URL
client:VS Code
transport:stdio
runtime:npm
Install OpenBrand in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "openbrand-api-key",
"description": "OPENBRAND_API_KEY",
"password": true
}
],
"servers": {
"openbrand": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"openbrand-mcp"
],
"env": {
"OPENBRAND_API_KEY": "${input:openbrand-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