# io.github.treza-labs/treza (npm · @treza/mcp)

Manage secure enclaves (TEEs) with attestation, payments, and signing for AI agents.

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

## Components

- npm · `@treza/mcp`: 70/100 (this document), [markdown](https://verifymcp.io/servers/treza-labs-treza/treza-mcp.md), [page](https://verifymcp.io/servers/treza-labs-treza/treza-mcp)

## Channel facts

- Registry: `npm`
- Package: `@treza/mcp`
- Version: `0.1.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 (108 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 (108 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 44 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 84/100
  - 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 1239 tokens (~61/item across 20 items; 16 tools + 4 resources), lean.
  - 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 treza-labs-treza -- npx -y @treza/mcp
```

### Codex

```bash
codex mcp add treza-labs-treza -- npx -y @treza/mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add treza-labs-treza --command npx --arg -y --arg @treza/mcp
```

### Hermes

```yaml
mcp_servers:
  treza-labs-treza:
    command: "npx"
    args: ["-y", "@treza/mcp"]
```

### Other

```json
{
  "mcpServers": {
    "treza-labs-treza": {
      "command": "npx",
      "args": [
        "-y",
        "@treza/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 70, +44)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [functional regression] Tool coverage: 100 → unverified
- [functional regression] Schema quality: 100 → unverified
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Stability: unverified → 0.20
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Schema quality: unverified → good
- [functional improvement] License: unverified → pass
- [functional] Licence: MIT

### 2026-07-31 (score 26, −27)

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

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

First indexed and scored.

## MCP tools (16)

### `treza_list_enclaves` (~55 tokens)

List all Treza Nitro Enclaves owned by a wallet address. Returns enclave IDs, names, statuses, regions, and configuration.

Input parameters:

- `walletAddress` (string, required): Ethereum wallet address that owns the enclaves

### `treza_get_enclave` (~54 tokens)

Get detailed information about a specific Treza enclave including its status, configuration, provider settings, and GitHub connection.

Input parameters:

- `enclaveId` (string, required): Unique enclave identifier (e.g. "enc_abc123")

### `treza_create_enclave` (~216 tokens)

Create a new AWS Nitro Enclave with hardware-isolated TEE. The enclave will generate and manage private keys internally — keys never leave the enclave boundary. Deployment takes 2-5 minutes via Step Functions.

Input parameters:

- `cpuCount` (string): Number of vCPUs
- `description` (string, required): Description of the enclave purpose
- `dockerImage` (string): Docker image to run inside the enclave
- `enableDebug` (boolean): Enable debug mode
- `exposePorts` (string): Comma-separated ports to expose
- `memoryMiB` (string): Memory in MiB
- `name` (string, required): Human-readable name for the enclave
- `providerId` (string): Provider ID (default: "aws-nitro-enclave")
- `region` (string, required): AWS region to deploy in (e.g. "us-east-1", "eu-west-1")
- `walletAddress` (string, required): Ethereum wallet address of the owner
- `workloadType` (string): Workload type

### `treza_update_enclave` (~65 tokens)

Update an existing enclave's name, description, or configuration.

Input parameters:

- `description` (string): New description
- `id` (string, required): Enclave ID to update
- `name` (string): New name
- `walletAddress` (string, required): Wallet address for authorization

### `treza_delete_enclave` (~55 tokens)

Permanently delete a terminated enclave. The enclave must be in DESTROYED status before deletion.

Input parameters:

- `enclaveId` (string, required): Enclave ID to delete
- `walletAddress` (string, required): Wallet address for authorization

### `treza_enclave_action` (~74 tokens)

Perform a lifecycle action on an enclave: pause (stop billing), resume (restart), or terminate (destroy infrastructure). Terminate is irreversible.

Input parameters:

- `action` (string, required): Lifecycle action
- `enclaveId` (string, required): Enclave ID to act on
- `walletAddress` (string, required): Wallet address for authorization

### `treza_get_enclave_logs` (~76 tokens)

Retrieve logs from an enclave. Supports filtering by source: ECS deployment, Step Functions workflow, Lambda triggers, application stdout/stderr, or errors only.

Input parameters:

- `enclaveId` (string, required): Enclave ID
- `limit` (number): Max log entries to return
- `logType` (string): Type of logs

### `treza_get_attestation` (~76 tokens)

Get the attestation document for a deployed enclave. Returns PCR measurements (enclave image hash, kernel hash, application hash, signing cert), certificate chain, and verification endpoints. Use this to cryptographically verify an enclave is running the expected code.

Input parameters:

- `enclaveId` (string, required): Enclave ID to get attestation for

### `treza_verify_attestation` (~103 tokens)

Perform comprehensive cryptographic verification of an enclave's attestation. Checks PCR measurements, certificate chain, timestamp validity, nonce matching, and signature. Returns trust level (HIGH/MEDIUM/LOW), compliance status (SOC2, HIPAA, FIPS), and risk score.

Input parameters:

- `challenge` (string): Challenge string for additional verification
- `enclaveId` (string, required): Enclave ID to verify
- `nonce` (string): Nonce for replay protection

### `treza_get_verification_status` (~41 tokens)

Quick check of an enclave's verification status and trust level without performing full verification.

Input parameters:

- `enclaveId` (string, required): Enclave ID to check

### `treza_list_providers` (~33 tokens)

List all available enclave providers (e.g., AWS Nitro Enclave) with their supported regions and configuration schemas.

### `treza_get_provider` (~46 tokens)

Get detailed information about a specific enclave provider including supported regions and configuration options.

Input parameters:

- `providerId` (string, required): Provider ID (e.g. "aws-nitro-enclave")

### `treza_list_tasks` (~44 tokens)

List all scheduled tasks for a wallet. Tasks are cron-scheduled operations that run inside enclaves.

Input parameters:

- `walletAddress` (string, required): Wallet address that owns the tasks

### `treza_create_task` (~90 tokens)

Create a new scheduled task to run inside an enclave on a cron schedule.

Input parameters:

- `description` (string, required): Task description
- `enclaveId` (string, required): Enclave to run the task on
- `name` (string, required): Task name
- `schedule` (string, required): Cron expression (e.g. "0 */6 * * *")
- `walletAddress` (string, required): Wallet address for authorization

### `treza_list_api_keys` (~63 tokens)

List all API keys for a wallet address. Keys have scoped permissions (enclaves:read, enclaves:write, tasks:read, tasks:write, logs:read).

Input parameters:

- `walletAddress` (string, required): Wallet address that owns the API keys

### `treza_create_api_key` (~71 tokens)

Create a new scoped API key for programmatic access to the Treza platform. Returns the key only once — store it securely.

Input parameters:

- `name` (string, required): Human-readable key name
- `permissions` (array, required): Array of permission scopes
- `walletAddress` (string, required): Wallet address for authorization

## Diagnostics

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

## Score history

- 2026-08-03: 70
- 2026-08-02: 70
- 2026-08-01: 26
- 2026-07-31: 26
- 2026-07-30: 53
- 2026-07-28: 53
- 2026-07-27: 53

## Links

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