# io.github.lordbasilaiassistant-sudo/contract-scanner (npm · @thryx/contract-scanner-mcp-server)

Smart contract security scanner — vulnerabilities, risk scores, and calldata decoding

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

## Components

- npm · `@thryx/contract-scanner-mcp-server`: 69/100 (this document), [markdown](https://verifymcp.io/servers/lordbasilaiassistant-sudo-contract-scanner/thryx-contract-scanner-mcp-server.md), [page](https://verifymcp.io/servers/lordbasilaiassistant-sudo-contract-scanner/thryx-contract-scanner-mcp-server)

## Channel facts

- Registry: `npm`
- Package: `@thryx/contract-scanner-mcp-server`
- Version: `1.0.2`
- 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 (105 of 109), 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 (105 of 109), 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 118 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 77/100
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 503 tokens (~125/item across 4 items; 4 tools + 0 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 23/100
  - Stability observed for 7 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 lordbasilaiassistant-sudo-contract-scanner -- npx -y @thryx/contract-scanner-mcp-server
```

### Codex

```bash
codex mcp add lordbasilaiassistant-sudo-contract-scanner -- npx -y @thryx/contract-scanner-mcp-server
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "lordbasilaiassistant-sudo-contract-scanner": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@thryx/contract-scanner-mcp-server"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add lordbasilaiassistant-sudo-contract-scanner --command npx --arg -y --arg @thryx/contract-scanner-mcp-server
```

### Hermes

```yaml
mcp_servers:
  lordbasilaiassistant-sudo-contract-scanner:
    command: "npx"
    args: ["-y", "@thryx/contract-scanner-mcp-server"]
```

### Other

```json
{
  "mcpServers": {
    "lordbasilaiassistant-sudo-contract-scanner": {
      "command": "npx",
      "args": [
        "-y",
        "@thryx/contract-scanner-mcp-server"
      ]
    }
  }
}
```

## 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 69, +33)

- [security regression] Provenance: unverified → fail
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Install scripts: unverified → pass
- [security improvement] Malware scan: unverified → pass
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] License: unverified → pass
- [functional improvement] Stability: unverified → 0.20
- [functional] Licence: MIT

### 2026-07-31 (score 36, −4)

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

### 2026-07-30 (score 40, −40)

- [security regression] Install scripts: pass → unverified
- [security regression] Known CVEs: partial → unverified
- [security regression] Malware scan: pass → unverified
- [security regression] Provenance: fail → unverified
- [functional regression] License: pass → unverified
- [functional regression] Dependency health: partial → unverified
- [functional regression] Maintenance: pass → unverified
- [functional] Licence: MIT

### 2026-07-27 (score 80, +55)

- [security regression] Provenance: unverified → fail
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Install scripts: unverified → pass
- [functional regression] Security disclosure: unverified → fail
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] License: unverified → pass
- [functional improvement] Tool coverage: unverified → 100
- [functional] First check of Schema quality: fail
- [functional] First check of Schema quality: excellent
- [functional] First check of Schema quality: fail
- [functional] First check of Tool coverage: 100
- [functional] Licence: MIT

### 2026-07-26 (score 25)

First indexed and scored.

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

## MCP tools (4)

### `scanner_analyze_contract` (~132 tokens)

BEFORE interacting with ANY smart contract, call this to get a full security report. Fetches source code (if verified), analyzes bytecode, detects vulnerabilities (reentrancy, hidden mint, backdoors, proxy risks, access control issues), and returns a risk score 0-100 with actionable findings. One call = complete analysis.

Input parameters:

- `address` (string, required): Contract address to analyze (0x...)
- `api_key` (string): Premium API key for unlimited scans. Free tier: 5 scans/hour.
- `chain` (string): Chain: base, ethereum, arbitrum (default: base)

### `scanner_compare_contracts` (~134 tokens)

Compare two smart contracts to see which is safer. Detects clones (identical bytecode), compares risk scores, identifies differences in access control and vulnerabilities. Use when choosing between two similar contracts (e.g., two DEX routers, two token versions).

Input parameters:

- `address1` (string, required): First contract address to compare (0x...)
- `address2` (string, required): Second contract address to compare (0x...)
- `api_key` (string): Premium API key for unlimited scans. Free tier: 5 scans/hour.
- `chain` (string): Chain: base, ethereum, arbitrum (default: base)

### `scanner_check_address` (~115 tokens)

Quick safety check on any address — is it a contract or EOA? Verified? Has selfdestruct, proxy, mint, pause, or blacklist? Returns risk flags in <1 second. Use this for fast triage before deciding whether to run a full scanner_analyze_contract scan.

Input parameters:

- `address` (string, required): Address to check (0x...)
- `api_key` (string): Optional premium API key to bypass rate limits.
- `chain` (string): Chain: base, ethereum, arbitrum (default: base)

### `scanner_decode_calldata` (~122 tokens)

Decode raw transaction calldata into human-readable function calls. Identifies the function being called, decodes parameters, and flags dangerous operations (unlimited approve, delegatecall, ownership transfers). Use BEFORE signing any transaction you don't fully understand.

Input parameters:

- `abi` (string): Contract ABI as JSON string for full parameter decoding. If not provided, common selectors (ERC-20, Uniswap, etc.) are matched automatically.
- `api_key` (string): Optional premium API key to bypass rate limits.
- `calldata` (string, required): Raw calldata hex string (0x...)

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/lordbasilaiassistant-sudo-contract-scanner/thryx-contract-scanner-mcp-server#diagnostics

## Score history

- 2026-08-03: 69
- 2026-08-02: 69
- 2026-08-01: 36
- 2026-07-31: 36
- 2026-07-30: 40
- 2026-07-28: 80
- 2026-07-27: 80
- 2026-07-26: 25

## Links

- npm package: https://www.npmjs.com/package/@thryx/contract-scanner-mcp-server
- Socket report: https://socket.dev/npm/package/@thryx/contract-scanner-mcp-server
- Repository: https://github.com/lordbasilaiassistant-sudo/mcp-servers
- Changelog RSS feed: https://verifymcp.io/servers/lordbasilaiassistant-sudo-contract-scanner/thryx-contract-scanner-mcp-server/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/lordbasilaiassistant-sudo-contract-scanner/thryx-contract-scanner-mcp-server/changelog.json
- HTML version of this page: https://verifymcp.io/servers/lordbasilaiassistant-sudo-contract-scanner/thryx-contract-scanner-mcp-server
