Skip to content
VS Code

sentinal mcp for VS Code

io.github.musaraf-m/sentinal-mcp

Redis health, BullMQ queue monitoring, memory analysis, and slow query diagnostics

client:VS Code transport:stdio runtime:npm

Install sentinal mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "redis-url",
      "description": "REDIS_URL",
      "password": true
    }
  ],
  "servers": {
    "sentinal-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@md-musaraf/sentinal-mcp"
      ],
      "env": {
        "REDIS_URL": "${input:redis-url}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

sentinal mcp in other clients