TONNode — TON blockchain access for VS Code
io.github.tonnode/mcp
Liteserver access to TON: balances, account state, transactions and get-methods over native ADNL.
client:VS Code
transport:stdio
runtime:npm
Install TONNode — TON blockchain access in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "ton-liteservers",
"description": "TON_LITESERVERS",
"password": true
},
{
"type": "promptString",
"id": "ton-network",
"description": "TON_NETWORK",
"password": true
}
],
"servers": {
"mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@tonnode/mcp"
],
"env": {
"TON_LITESERVERS": "${input:ton-liteservers}",
"TON_NETWORK": "${input:ton-network}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs