reftrixmcp for VS Code
io.github.tkmd/reftrixmcp
Web design analysis with 26 MCP tools: layout, motion, quality, semantic search via pgvector
client:VS Code
transport:stdio
runtime:npm
Install reftrixmcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "database-url",
"description": "DATABASE_URL",
"password": true
},
{
"type": "promptString",
"id": "redis-url",
"description": "REDIS_URL",
"password": true
},
{
"type": "promptString",
"id": "ollama-base-url",
"description": "OLLAMA_BASE_URL",
"password": true
}
],
"servers": {
"reftrixmcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@reftrixmcp/mcp-server"
],
"env": {
"DATABASE_URL": "${input:database-url}",
"REDIS_URL": "${input:redis-url}",
"OLLAMA_BASE_URL": "${input:ollama-base-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs