Razz Games for VS Code
io.github.razz-games/razz
Play provably fair games with real SOL wagering from any AI agent
client:VS Code
transport:stdio
runtime:npm
Install Razz Games in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "razz-api-key",
"description": "RAZZ_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "platform-ws-url",
"description": "PLATFORM_WS_URL",
"password": true
},
{
"type": "promptString",
"id": "platform-api-url",
"description": "PLATFORM_API_URL",
"password": true
}
],
"servers": {
"razz": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@razzgames/mcp-server"
],
"env": {
"RAZZ_API_KEY": "${input:razz-api-key}",
"PLATFORM_WS_URL": "${input:platform-ws-url}",
"PLATFORM_API_URL": "${input:platform-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs