fairseal mcp server for VS Code
io.github.ned-del/fairseal-mcp-server
Verifiable entropy, provably-fair games, and receipt verification for AI agents (FairSeal API).
client:VS Code
transport:stdio
runtime:npm
Install fairseal mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "fairseal-api-key",
"description": "FAIRSEAL_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "fairseal-api-url",
"description": "FAIRSEAL_API_URL",
"password": true
}
],
"servers": {
"fairseal-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@fairseal/mcp-server"
],
"env": {
"FAIRSEAL_API_KEY": "${input:fairseal-api-key}",
"FAIRSEAL_API_URL": "${input:fairseal-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