Skip to content
VS Code

davincibets mcp for VS Code

io.github.davincipicks/davincibets-mcp

AI sports predictions for NBA, NFL, NHL & MLB — picks, cards, track record, schedule

client:VS Code transport:stdio runtime:npm

Install davincibets mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "dvb-api-key",
      "description": "DVB_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "davincibets-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@davincibets/mcp-server"
      ],
      "env": {
        "DVB_API_KEY": "${input:dvb-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

davincibets mcp in other clients