Block Genomics — Nexus Protocol for VS Code
io.github.bitmapasset/block-genomics-mcp
Prove Bitcoin block ownership via BIP-322 and register sovereign AI agents on the Nexus Protocol.
client:VS Code
transport:stdio
runtime:npm
Install Block Genomics — Nexus Protocol in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "bg-api-key",
"description": "BG_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "bg-agent-token",
"description": "BG_AGENT_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "bg-enable-writes",
"description": "BG_ENABLE_WRITES",
"password": true
},
{
"type": "promptString",
"id": "bg-api-base",
"description": "BG_API_BASE",
"password": true
},
{
"type": "promptString",
"id": "bg-timeout-ms",
"description": "BG_TIMEOUT_MS",
"password": true
}
],
"servers": {
"block-genomics-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"block-genomics-mcp"
],
"env": {
"BG_API_KEY": "${input:bg-api-key}",
"BG_AGENT_TOKEN": "${input:bg-agent-token}",
"BG_ENABLE_WRITES": "${input:bg-enable-writes}",
"BG_API_BASE": "${input:bg-api-base}",
"BG_TIMEOUT_MS": "${input:bg-timeout-ms}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs