What is TON MCP
TON MCP gives your AI agent access to TON Blockchain and its documentation — check balances, send transactions, deploy contracts, and search official docs.
Getting started
Install skills
Run this in your terminal to install the full TON skills bundle.
npx skills add ton-org/skills -yAsk your agent
Open your AI assistant and ask:
You're ready to go
Your agent can now query balances, send TON, search documentation, and more. Scroll down to install individual skills or configure MCP servers directly.
Skills
Agent skills are bundles of instructions and workflows that teach your AI assistant domain-specific knowledge. TON skills below come from ton-org/skills and cover wallets, on-chain operations, and the official documentation.
TON Blockchain & Wallets
A bundle of agent skills that teaches your AI assistant how to work with TON wallets and on-chain operations — checking balances, sending TON and jettons, swapping on DEX, managing NFTs, and creating agentic wallets.
npx skills add ton-org/skills/wallets -yTON Documentation
An agent skill that grounds your AI assistant in the official TON documentation: TL-B, TVM, FunC and Tolk, validator and staking topics, protocol architecture, and TEPs.
npx skills add ton-org/skills/docs -yMCPs
MCPs are Model Context Protocol servers — they expose tools your AI agent can call directly. TON MCPs below give your agent access to the blockchain and to the official documentation.
TON Blockchain MCP
A local Model Context Protocol server that gives your AI agent direct access to TON Blockchain — read balances and transaction history, send TON and jettons, deploy contracts, swap on DEX, and operate agentic wallets.
claude mcp add ton -- npx -y @ton/mcp@alpha{
"mcpServers": {
"ton": {
"command": "npx",
"args": ["-y", "@ton/mcp@alpha"]
}
}
}{
"mcpServers": {
"ton": {
"command": "npx",
"args": ["-y", "@ton/mcp@alpha"]
}
}
}{
"servers": {
"ton": {
"command": "npx",
"args": ["-y", "@ton/mcp@alpha"]
}
}
}TON Documentation MCP
A hosted Model Context Protocol server that lets your AI agent search and read the official TON documentation.
claude mcp add --transport http ton-docs https://docs.ton.org/mcp{
"mcpServers": {
"ton-docs": {
"url": "https://docs.ton.org/mcp"
}
}
}{
"mcpServers": {
"ton-docs": {
"url": "https://docs.ton.org/mcp"
}
}
}{
"servers": {
"ton-docs": {
"type": "http",
"url": "https://docs.ton.org/mcp"
}
}
}