iz-tolk-mcp
iz-tolk-mcp is an MCP server that integrates the Tolk smart contract compiler into AI assistants for TON blockchain development.
Tools:
compile_tolk: Compile.tolksource files (including multi-file projects with@stdlib/*imports) into Fift output, base64-encoded BoC, and a code hash. Supports optimization levels (0–2) and optional stack comments.check_tolk_syntax: Quickly validate Tolk code for syntax and type errors without full compilation — ideal for fast iterative feedback.generate_deploy_link: Given a compiled BoC, compute the contract address and generateton://deeplinks and Tonkeeper URLs for deployment. Supports initial data, workchain selection, and custom deploy amounts.get_compiler_version: Retrieve the version of the bundled Tolk compiler.
Resources: Access six documentation resources including the Tolk language guide, standard library reference, changelog, FunC-to-Tolk migration guide, and example contracts (counter, jetton).
Prompts (guided workflows):
write_smart_contract— Get assistance writing new Tolk contracts from a description.review_smart_contract— Security-focused review checking for common vulnerabilities.debug_compilation_error— Diagnose and fix compilation errors from error messages and source code.
Runs via npx with no external dependencies beyond Node.js ≥ 18, and integrates with Claude Desktop, Cursor, Windsurf, VS Code Copilot, and other MCP-compatible clients.
Provides tools to compile Tolk smart contracts, check syntax, and generate deployment links for the TON blockchain, along with access to developer documentation and code examples.
iz-tolk-mcp
MCP server for the Tolk smart contract compiler — compile, check, and deploy TON blockchain smart contracts from any AI assistant
🇷🇺 Русский | 🇬🇧 English
MCP server that brings the Tolk smart contract compiler directly into AI assistants like Claude — write, compile, check, and deploy TON contracts without leaving the conversation.
📖 Overview
iz-tolk-mcp is a Model Context Protocol (MCP) server that integrates the Tolk smart contract compiler into AI assistants, enabling a seamless write-compile-deploy workflow for TON blockchain development.
Tolk is the next-generation smart contract language for the TON blockchain, designed as a modern successor to FunC with familiar syntax (C/TypeScript-like), type safety, and cleaner semantics.
MCP (Model Context Protocol) is an open standard that lets AI assistants use external tools, access data sources, and follow guided workflows — turning them into capable development environments.
✨ Features
Feature | Description |
🔨 4 MCP Tools |
|
📄 6 MCP Resources | Language guide, stdlib reference, changelog, FunC migration guide, example contracts |
💬 3 MCP Prompts | Guided workflows for writing, reviewing, and debugging smart contracts |
⚙️ Full Compiler Options | Optimization levels (0-2), stack comments, path mappings, multi-file compilation |
📦 Multi-file Support | Compile projects with multiple |
🔗 Deployment Links | Generate |
🚀 Zero Configuration | Runs via |
🚀 Quick Start
npx iz-tolk-mcpThe server communicates over stdio and is designed to be launched by an MCP client.
📦 Installation
Using npx (no install needed)
MCP clients launch the server automatically — just add it to your configuration (see below).
Global install
npm install -g iz-tolk-mcpFrom source
git clone https://github.com/izzzzzi/izTolkMcp.git
cd izTolkMcp
npm install
npm run buildRequirement: Node.js >= 18
🔧 MCP Client Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"tolk": {
"command": "npx",
"args": ["-y", "iz-tolk-mcp"]
}
}
}claude mcp add tolk -- npx -y iz-tolk-mcpAdd to .cursor/mcp.json:
{
"mcpServers": {
"tolk": {
"command": "npx",
"args": ["-y", "iz-tolk-mcp"]
}
}
}Add to ~/.windsurf/mcp.json:
{
"mcpServers": {
"tolk": {
"command": "npx",
"args": ["-y", "iz-tolk-mcp"]
}
}
}Add to .vscode/mcp.json:
{
"servers": {
"tolk": {
"command": "npx",
"args": ["-y", "iz-tolk-mcp"]
}
}
}{
"mcpServers": {
"tolk": {
"command": "node",
"args": ["/absolute/path/to/izTolkMcp/dist/cli.js"]
}
}
}🛠️ MCP Tools
🔍 get_compiler_version
Returns the version of the Tolk compiler bundled in @ton/tolk-js (WASM).
Parameter | Type | Required | Description |
(none) | — | — | No parameters |
🔨 compile_tolk
Compiles Tolk smart contract source code. Returns Fift output, BoC (Bag of Cells) in base64, code hash, and compiler version.
Parameter | Type | Required | Description |
|
| ✅ | The main |
|
| ✅ | Map of |
|
| — | Optimization level 0-2 (default: 2) |
|
| — | Include stack layout comments in Fift output |
|
| — | Maps |
✅ check_tolk_syntax
Checks Tolk source code for syntax and type errors without returning full compilation output. Faster feedback loop for iterative development.
Parameter | Type | Required | Description |
|
| ✅ | The main |
|
| ✅ | Map of |
|
| — | Maps |
🔗 generate_deploy_link
Generates TON deployment deeplinks for a compiled contract. Computes the deterministic contract address and returns ton:// and Tonkeeper links ready for wallet deployment.
Parameter | Type | Required | Description |
|
| ✅ | Base64-encoded BoC of compiled contract code (from |
|
| — | Base64-encoded BoC for initial data cell (default: empty cell) |
|
| — | Target workchain ID (default: 0) |
|
| — | Deploy amount in nanoTON (default: |
📄 MCP Resources
Resource | URI | Description |
📘 |
| Complete Tolk language syntax reference |
📗 |
| Standard library modules and functions reference |
📋 |
| Tolk compiler version history from v0.6 to latest |
🔄 |
| FunC to Tolk migration guide — key differences and comparison |
📝 |
| Simple counter smart contract example in Tolk |
💎 |
| Jetton (fungible token) minter contract example in Tolk |
💬 MCP Prompts
write_smart_contract
Guided workflow for writing a new Tolk smart contract on TON. Injects the language reference and a relevant example contract into the conversation context.
Argument | Type | Required | Description |
|
| ✅ | Description of what the smart contract should do |
|
| — |
|
review_smart_contract
Security-focused review of a Tolk smart contract. Checks for access control, message handling, integer overflow, gas management, storage integrity, and TON-specific vulnerabilities.
Argument | Type | Required | Description |
|
| ✅ | The Tolk smart contract source code to review |
debug_compilation_error
Diagnose and fix a Tolk compilation error. Analyzes the error against the language reference and provides corrected code.
Argument | Type | Required | Description |
|
| ✅ | The compilation error message from the Tolk compiler |
|
| ✅ | The Tolk source code that failed to compile |
💡 Usage Examples
Once configured, interact with the Tolk MCP server through natural language in your AI assistant:
Compile a contract:
"Compile this Tolk smart contract:"
import "@stdlib/tvm-dicts"; fun onInternalMessage(myBalance: int, msgValue: int, msgFull: cell, msgBody: slice) { // handle messages }
Write a new contract from scratch:
"Write a simple counter contract for TON that stores a number and lets anyone increment it. Include a getter to read the current value."
Review an existing contract:
"Review this contract for security issues" (paste code)
Debug a compilation error:
"I'm getting this error when compiling:
unexpected token 'fun'— here's my code:" (paste code)
Generate a deploy link:
"Generate a deployment link for the contract we just compiled."
📁 Project Structure
src/
├── index.ts — Server initialization and stdio transport
├── tools.ts — 4 MCP tools (compile, check, version, deploy)
├── resources.ts — 6 MCP resources (docs, examples)
├── prompts.ts — 3 MCP prompts (write, review, debug)
└── content/ — Bundled documentation and example contracts
├── language-guide.md
├── stdlib-reference.md
├── changelog.md
├── tolk-vs-func.md
├── example-counter.tolk
└── example-jetton.tolkKey dependencies:
@modelcontextprotocol/sdk— MCP server framework@ton/tolk-js— Tolk compiler (WASM, runs locally)@ton/core— TON primitives for address computation and cell serializationzod— Schema validation for tool parameters
🧑💻 Development
npm install # Install dependencies
npm run build # Compile TypeScript + copy content files
npm run dev # Run with tsx (hot reload for development)
npm test # Run test suite (vitest)
npm run lint # Check for lint errors
npm run lint:fix # Fix lint errors automatically
npm run format # Format code with BiomePre-commit hooks enforce code quality automatically:
Biome — fast linter and formatter for TypeScript
Husky — Git hooks manager
lint-staged — runs checks only on staged files
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/izzzzzi/iz-tolk-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server