# iz-tolk-mcp — Tolk Compiler for TON (npm · iz-tolk-mcp)

Tolk smart contract compiler for TON — compile, check, and deploy from AI assistants

- Trust score: 71/100 (medium)
- Change this week: +18
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `iz-tolk-mcp`: 71/100 (this document), [markdown](https://verifymcp.io/servers/izzzzzi-iz-tolk-mcp/iz-tolk-mcp.md), [page](https://verifymcp.io/servers/izzzzzi-iz-tolk-mcp/iz-tolk-mcp)

## Channel facts

- Registry: `npm`
- Package: `iz-tolk-mcp`
- Version: `1.2.1`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (97 of 101), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (97 of 101), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 111 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 85/100
  - 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 593 tokens (~59/item across 10 items; 4 tools + 6 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add izzzzzi-iz-tolk-mcp -- npx -y iz-tolk-mcp
```

### Codex

```bash
codex mcp add izzzzzi-iz-tolk-mcp -- npx -y iz-tolk-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "izzzzzi-iz-tolk-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "iz-tolk-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add izzzzzi-iz-tolk-mcp --command npx --arg -y --arg iz-tolk-mcp
```

### Hermes

```yaml
mcp_servers:
  izzzzzi-iz-tolk-mcp:
    command: "npx"
    args: ["-y", "iz-tolk-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "izzzzzi-iz-tolk-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "iz-tolk-mcp"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-02 (score 71, +45)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional improvement] Schema quality: unverified → excellent
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] License: unverified → pass
- [functional improvement] Stability: unverified → 0.23
- [functional improvement] MCP protocol: unverified → pass
- [functional] Licence: MIT

### 2026-08-01 (score 26, +21)

- [functional improvement] Tool coverage: unverified → 100
- [functional improvement] Schema quality: unverified → 100

### 2026-07-31 (score 5, −30)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 35, −18)

- [security regression] Malware scan: pass → unverified

### 2026-07-27 (score 53)

First indexed and scored.

## MCP tools (4)

### `get_compiler_version` (~38 tokens)

Returns the version of the Tolk compiler (from @ton/tolk-js WASM). Use this to check which compiler version is available.

### `compile_tolk` (~178 tokens)

Compiles Tolk smart contract source code using @ton/tolk-js. Provide source files as a map of filename->content. The entrypoint file must be included. Standard library imports (@stdlib/*) are resolved automatically. Returns compiled Fift code, BoC (Bag of Cells) in base64, and the code hash.

Input parameters:

- `entrypointFileName` (string, required): The main .tolk file to compile (e.g., "main.tolk")
- `optimizationLevel` (integer): Optimization level 0-2 (default: 2)
- `sources` (object, required): Object mapping filename -> source code content. Must include the entrypoint file. Example: {"main.tolk": "fun main(): int { return 0; }"}
- `withStackComments` (boolean): Include stack layout comments in Fift output

### `check_tolk_syntax` (~114 tokens)

Checks Tolk source code for syntax and type errors without returning full compilation output. Faster feedback loop for iterative development. Returns OK + code hash on success, or error details on failure.

Input parameters:

- `entrypointFileName` (string, required): The main .tolk file to check (e.g., "main.tolk")
- `sources` (object, required): Object mapping filename -> source code content. Must include the entrypoint file. Example: {"main.tolk": "fun main(): int { return 0; }"}

### `generate_deploy_link` (~162 tokens)

Generates a TON deployment deeplink for a compiled Tolk contract. Accepts the compiled code BoC (base64) and optionally initial data BoC. Computes the contract address and returns ton:// deeplinks for wallet deployment.

Input parameters:

- `amount` (string): Amount in nanoTON to send with deploy message (default: "50000000" = 0.05 TON)
- `codeBoc64` (string, required): Base64-encoded BoC of the compiled contract code (from compile_tolk output)
- `initialDataBoc64` (string): Base64-encoded BoC for the contract initial data cell (default: empty cell)
- `workchain` (number): Target workchain ID (default: 0, the basechain)

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/izzzzzi-iz-tolk-mcp/iz-tolk-mcp#diagnostics

## Score history

- 2026-08-03: 71
- 2026-08-02: 71
- 2026-08-01: 26
- 2026-07-31: 5
- 2026-07-30: 35
- 2026-07-28: 53
- 2026-07-27: 53

## Links

- npm package: https://www.npmjs.com/package/iz-tolk-mcp
- Socket report: https://socket.dev/npm/package/iz-tolk-mcp
- Repository: https://github.com/izzzzzi/izTolkMcp
- Changelog RSS feed: https://verifymcp.io/servers/izzzzzi-iz-tolk-mcp/iz-tolk-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/izzzzzi-iz-tolk-mcp/iz-tolk-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/izzzzzi-iz-tolk-mcp/iz-tolk-mcp
