mufmuf mcp for VS Code
io.github.iziklisbon/mufmuf-mcp
Score how visually compatible two photos are (1-10), with sub-scores and an explanation.
client:VS Code
transport:stdio
runtime:npm
Install mufmuf mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "mufmuf-api-key",
"description": "MUFMUF_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "mufmuf-api-base",
"description": "MUFMUF_API_BASE",
"password": true
}
],
"servers": {
"mufmuf-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"mufmuf-mcp"
],
"env": {
"MUFMUF_API_KEY": "${input:mufmuf-api-key}",
"MUFMUF_API_BASE": "${input:mufmuf-api-base}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs