nockchain mcp for VS Code
io.github.winter0x/nockchain-mcp
Community-built read-only Nockchain access: balances, payment verification, blocks, node health.
client:VS Code
transport:stdio
runtime:npm
Install nockchain mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "nockchain-endpoints",
"description": "NOCKCHAIN_ENDPOINTS",
"password": true
},
{
"type": "promptString",
"id": "nockchain-max-staleness-seconds",
"description": "NOCKCHAIN_MAX_STALENESS_SECONDS",
"password": true
},
{
"type": "promptString",
"id": "nockchain-max-height-lag",
"description": "NOCKCHAIN_MAX_HEIGHT_LAG",
"password": true
}
],
"servers": {
"nockchain-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"nockchain-mcp"
],
"env": {
"NOCKCHAIN_ENDPOINTS": "${input:nockchain-endpoints}",
"NOCKCHAIN_MAX_STALENESS_SECONDS": "${input:nockchain-max-staleness-seconds}",
"NOCKCHAIN_MAX_HEIGHT_LAG": "${input:nockchain-max-height-lag}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs