TONNode - TON blockchain access MCP Server

Русская версия MCP server that gives AI agents direct liteserver access to The Open Network (TON) - no HTTP gateways in the middle. Balances, account state, transaction history and contract get-methods over TON's native ADNL protocol. Its 16 documented tools cover crosschain, swap, build, balance. It runs locally over stdio via the published package.

People connecting this server to Claude, Cursor, VS Code, or another MCP client. The project is written in TypeScript.

VERIFIED ACTIVE

LAST COMMIT 2026-08-04 · ★ 37 · #144 OF 848 MAINTAINED OTHER · VERIFIED 2026-08-25

MIT · TypeScript servers · how we verify → /methodology

01 · Install TONNode - TON blockchain access

before you install - you'll need

TONNODE_KEYS

Environment variables documented in the project's README - it lists which are required and which have defaults.

Claude Code

claude mcp add tonnode-mcp -- npx -y @tonnode/mcp

Claude Desktop / Cursor / VS Code - add to config

{
  "mcpServers": {
    "tonnode-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@tonnode/mcp"
      ]
    }
  }
}

Same JSON for Cursor. For VS Code, rename the top-level key from `mcpServers` to `servers`.

Using another client? Same JSON, different key

Claude Desktop · mcpServers

Cursor · mcpServers

VS Code · servers

Windsurf · mcpServers

Zed · context_servers

Cline · mcpServers

Roo Code · mcpServers

Continue · mcpServers

LibreChat · mcpServers

Gemini CLI · mcpServers

Codex CLI · mcp_servers

Full setup guides: every client.

02 · Evidence

Security posture

What to check before giving this server access to your agent - from the registry, GitHub, and our own probes. We don't score safety; we show what's verifiable.

runs as local process (stdio) - runs on your machine with your user's permissions

repo age created 2026-07-14 - young repo, little track record yet

license MIT - declared in the repository

npm package @tonnode/mcp - published under the repo owner's npm scope (@tonnode)

registry namespace io.github.tonnode is GitHub-verified and matches the repo owner

03 · What TONNode - TON blockchain access can do

Prose above is summarized from the project's README and registry record - no invented capabilities.

What you can build

An agent gets 16 documented tools spanning crosschain, swap, build, balance, including get_balance, get_jetton_balance, get_jetton_info, get_transactions.

Capability map

Tools grouped from the project's README - what TONNode - TON blockchain access lets an agent do.

read & search

6 tools - e.g. GRAM balance of an address; Recent transactions: values, senders, fees; Status, deployment flags, last-tx pointer

get_balance · get_transactions · get_account_state · get_masterchain_info · get_swap_quote · get_crosschain_quote

Build

3 tools - e.g. Unsigned, TonConnect-ready swap transaction; Unsigned HTLC escrow transaction + its secret; Unsigned cancellation that reclaims escrowed funds

build_swap_tx · build_crosschain_swap_tx · build_crosschain_refund

Jetton

2 tools - e.g. Jetton/token balance (USDT and any TEP-74 token); Token metadata: name, symbol, decimals, supply

get_jetton_balance · get_jetton_info

run & execute

1 tool - e.g. Read-only get-methods on contracts

run_get_method

Parse

1 tool - e.g. Convert/validate EQ…/UQ…/raw forms, offline

parse_address

Track

1 tool - e.g. Live phases of a cross-chain trade on both chains

track_crosschain_swap

Disclose

1 tool - e.g. Reveal the secret - atomically settles both sides

disclose_crosschain_secret

Generate

1 tool - e.g. Mint a fresh TON wallet (mnemonic + keys + address)

generate_wallet

04 · Who maintains TONNode - TON blockchain access

TONNode - TON blockchain access is maintained by tonnode. It's the only MCP server we track from this author; the repo dates to Jul 2026.

05 · Facts

category
other - ranked #144 of 848 actively-maintained other servers as of 2026-08-25.
registry
io.github.tonnode/mcp (active, first published 2026-07-14 · 7 versions)
packages
npm:@tonnode/mcp

06 · TONNode - TON blockchain access FAQ

Is TONNode - TON blockchain access still maintained?

Yes - as of 2026-08-25, its last commit was 2026-08-04. We re-verify nightly.

What can TONNode - TON blockchain access do?

An agent gets 16 documented tools spanning crosschain, swap, build, balance, including get_balance, get_jetton_balance, get_jetton_info, get_transactions.

How do I install TONNode - TON blockchain access?

Run `npx -y @tonnode/mcp`. The README documents one environment variable (TONNODE_KEYS) to set first. You can also paste the ready-made client config above.

Does TONNode - TON blockchain access run locally?

Yes - it's a stdio server: it runs on your machine (via npx) with your user's permissions. Your data stays local unless the server itself calls external APIs.

07 · Alternatives to TONNode - TON blockchain access