# io.github.tronrental-com/tronrental (npm · @tronrental-com/mcp-server)

Buy TRON energy to reduce USDT transfer fees by 80%. Full API for AI agents.

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

## Components

- npm · `@tronrental-com/mcp-server`: 68/100 (this document), [markdown](https://verifymcp.io/servers/tronrental-com-tronrental/tronrental-com-mcp-server.md), [page](https://verifymcp.io/servers/tronrental-com-tronrental/tronrental-com-mcp-server)

## Channel facts

- Registry: `npm`
- Package: `@tronrental-com/mcp-server`
- Version: `1.0.4`
- 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-04.

- **Supply Chain Security**: 83/100
  - No malware found by supply-chain analysis.
  - CVE check failed: a known medium-severity CVE affects hono 4.12.33, reached via @modelcontextprotocol/sdk > hono. A fixed version is available.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (94 of 98), 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 142 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 76/100
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 1134 tokens (~113/item across 10 items; 10 tools + 0 resources), over budget; trim descriptions and params.
  - 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 tronrental-com-tronrental -- npx -y @tronrental-com/mcp-server
```

### Codex

```bash
codex mcp add tronrental-com-tronrental -- npx -y @tronrental-com/mcp-server
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add tronrental-com-tronrental --command npx --arg -y --arg @tronrental-com/mcp-server
```

### Hermes

```yaml
mcp_servers:
  tronrental-com-tronrental:
    command: "npx"
    args: ["-y", "@tronrental-com/mcp-server"]
```

### Other

```json
{
  "mcpServers": {
    "tronrental-com-tronrental": {
      "command": "npx",
      "args": [
        "-y",
        "@tronrental-com/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-04 (score 68, +3)

- [security regression] CVE-2026-69207 affects this package: medium
- [security regression] Known CVEs: partial → fail
- [functional improvement] Stability: unverified → 0.27

### 2026-08-02 (score 65, +44)

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

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

- [functional improvement] Tool coverage: unverified → 100

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

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

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

- [security regression] Malware scan: pass → unverified
- [functional regression] Tool coverage: 100 → unverified

### 2026-07-28 (score 46, +22)

- [functional improvement] Tool coverage: unverified → 100
- [functional] First check of Tool coverage: 100
- [functional] First check of Schema quality: unverified
- [functional] First check of Schema quality: fail
- [functional] First check of Schema quality: fail

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

First indexed and scored.

## MCP tools (10)

### `get_prices` (~40 tokens)

Get current TronRental energy and bandwidth prices, TRX/USD rate, and volume limits. No authentication required. Use this to show the user current market rates.

### `calculate_savings` (~95 tokens)

Calculate TRX savings from renting energy vs burning TRX for USDT transfers.
Returns burn_cost (what the user pays without energy) and rental_cost (what they pay with TronRental).
The rental_cost is the TOTAL cost — there are no hidden or additional fees.
After showing results, ask the user if they want to proceed with buying energy.

Input parameters:

- `monthly_transfers` (integer, required): Number of USDT transfers per month

### `register` (~94 tokens)

Register a new TronRental account. Returns access token. Ask the user for their email, or suggest generating a temporary one. After registration, proceed to create_api_key.

Input parameters:

- `email` (string, required): Email address for the account
- `language` (string): Language code (en, ru, zh, ko, etc.)
- `password` (string, required): Password (min 8 chars, must contain uppercase, lowercase, and digit)

### `login` (~38 tokens)

Log in to an existing TronRental account. Returns access token.

Input parameters:

- `email` (string, required): Account email
- `password` (string, required): Account password

### `create_api_key` (~63 tokens)

Create an API key for authenticated operations. Requires a valid access token from register or login. The key is shown only once — tell the user to save it. After creating, proceed to get_deposit_address.

Input parameters:

- `name` (string): Name for the API key

### `get_deposit_address` (~50 tokens)

Get the TRX/USDT deposit address for funding the TronRental balance. Show this address to the user and ask them to send TRX. After they send, use get_balance to verify.

### `get_balance` (~35 tokens)

Check current TronRental account balance in TRX. Use after deposit to verify funds arrived, or before buy_energy to check sufficient balance.

### `buy_energy` (~162 tokens)

Buy TRON energy for a target address. This is the core action — energy eliminates USDT transfer fees.
Use 65,000 for addresses that already hold USDT, or 131,000 for addresses that have never held USDT.
Minimum: 60,000. Maximum: 5,000,000. Duration is always "1h".
After purchase, call get_order to confirm the energy was delegated.

Input parameters:

- `duration` (string): Rental duration — always use 1h
- `target_address` (string, required): TRON address to receive energy (starts with T, 34 chars)
- `volume` (integer, required): Energy amount: 65000 for 1 transfer (recipient has USDT), 131000 (recipient has no USDT)

### `get_order` (~47 tokens)

Check the status of an energy purchase order. Call after buy_energy to confirm the energy was successfully delegated to the target address.

Input parameters:

- `order_id` (integer, required): Order ID returned from buy_energy

### `regenerate_deposit_address` (~41 tokens)

Generate a new deposit address, replacing the current one. Use only if the user explicitly asks for a new address. Rate limited to 1 per minute.

## Diagnostics

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

## Score history

- 2026-08-04: 68
- 2026-08-03: 65
- 2026-08-02: 65
- 2026-08-01: 21
- 2026-07-31: 5
- 2026-07-30: 6
- 2026-07-28: 46
- 2026-07-27: 24

## Links

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