← Registry

Data Collection

tronsave.io

Provides access to TronSave account and order data, including balances, deposit addresses, order history, and market depth.

2 endpoints58 known toolsFirst detected July 25, 2026Last detected July 25, 2026

ENDPOINT 1

https://mcp.tronsave.io/mcp

No auth detected

MCP server metadata

Name
TronSave MCP Server
Version
1.0.0
Capabilities
tools.listChanged
Server instructions

TronSave MCP — buy/sell/extend TRON resources (ENERGY, BANDWIDTH) on the TronSave market. Networks (by endpoint): POST /mcp = mainnet, POST /testnet/mcp = testnet. Auth: call `tronsave_login` first, then send the returned `sessionId` as the `mcp-session-id` header on every later request. Two modes — (1) wallet SIGNATURE (preferred; required for platform tools): get a message via `tronsave_get_sign_message`, sign it client-side, submit `<signature>_<timestamp>`; (2) API KEY (`apiKey` param). Never send private keys to the server — signing is always client-side. Two tool families: - Platform (`tronsave_*`, GraphQL market): public discovery (list/estimate/order book/min price) plus signature-session mutations (create/cancel/update order, auto-sell, API keys). - Internal (`tronsave_internal_*` + `tronsave_get_internal_account`, REST, api-key account): estimate, create order, history, details, order book, extend — scoped to your deposited internal balance. Units: all prices are in SUN (1 TRX = 1,000,000 SUN). Durations are in seconds. FRESHNESS: market prices/availability change roughly every 3 seconds (one TRON block). Re-run an estimate/order-book read IMMEDIATELY before creating or updating an order; never reuse a quote more than a few seconds old.

Known tools 29

tronsave_get_internal_account

Retrieve the TronSave internal account profile for the current session: represent address, deposit address, and balance (SUN).

Inferred read-only
tronsave_get_deposit_address

Fetches the specific deposit address for the TronSave internal account.

Inferred read-only
tronsave_internal_order_history

List paginated order history for the internal account linked to the API key, newest first.

Inferred read-only
tronsave_internal_order_details

Fetch full details for one internal-account order by order ID.

Inferred read-only
tronsave_internal_order_book

Return the current TronSave market depth/price tiers for ENERGY or BANDWIDTH via the api-key REST endpoint.

Inferred read-only
tronsave_internal_order_estimate

Estimate the TRX cost and availability for a buy order before submitting it (api-key internal account).

Inferred read-only
tronsave_internal_order_create

Place a new buy order for ENERGY or BANDWIDTH on TronSave, paid from the internal account balance.

Inferred read-only
tronsave_internal_extend_delegates

Return extendable delegations for a receiver plus an `extendData` payload for the extension flow.

Inferred read-only
tronsave_internal_create_extend_request

Submit an extension request for existing delegated resources on TronSave, paid from the internal account.

Inferred read-only
tronsave_get_sign_message

Issue a wallet-signable timestamp message helper for signature login.

Potential side effects
tronsave_login

Authenticate with TronSave and create a server session.

Potential side effects
tronsave_get_user_info

Read the current authenticated user's profile and linked TronSave internal account.

Inferred read-only
tronsave_get_user_auto_setting

Read the current user's auto-sell configuration (`autoSettings`).

Inferred read-only
tronsave_get_user_permissions

Read the enabled permission operations (`autoSettings.

Inferred read-only
tronsave_estimate_buy_resource

Quote price and availability for buying ENERGY or BANDWIDTH for a receiver address before placing an order.

Inferred read-only
tronsave_get_order

Read one order by `id` and return its full snapshot for NORMAL, FAST, or EXTEND order types.

Inferred read-only
tronsave_list_orders

Query the order list with paging.

Inferred read-only
tronsave_list_order_books

Read market depth buckets for `ENERGY` or `BANDWIDTH`.

Inferred read-only
tronsave_get_min_price

Quote the minimum unit price for a buy.

Inferred read-only
tronsave_list_extendable_delegates

List extendable delegate candidates for a `receiver` and `resourceType` (ENERGY|BANDWIDTH).

Inferred read-only
tronsave_create_order

Create a new buy order on the TronSave market.

Potential side effects
tronsave_sell_order_manual

Manually execute seller-side fulfillment of an existing order with a wallet `signedTx`.

Potential side effects
tronsave_cancel_order

Cancel an open order by `orderId`.

Inferred read-only
tronsave_update_order

Update an open order by `orderId` with partial fields (`receiver`, `newPrice`).

Potential side effects
tronsave_register_auto_sell

Create the initial auto-sell configuration for the authenticated user.

Potential side effects
tronsave_update_auto_sell_setting

Update the existing auto-sell configuration with partial fields.

Potential side effects
tronsave_generate_api_key

Generate a new internal API key credential for the current user.

Inferred read-only
tronsave_revoke_api_key

Revoke the caller's current internal API key.

Inferred read-only
tronsave_delete_auto_buy_setting

Permanently delete one auto-buy rule by `id` (`MObjectId`).

Potential side effects

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.tronsave-mcp-server]
url = "https://mcp.tronsave.io/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "tronsave-mcp-server": {
      "type": "http",
      "url": "https://mcp.tronsave.io/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: tronsave-mcp-server
Remote MCP URL: https://mcp.tronsave.io/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "tronsave-mcp-server": {
      "url": "https://mcp.tronsave.io/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "tronsave-mcp-server": {
      "type": "http",
      "url": "https://mcp.tronsave.io/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "tronsave-mcp-server",
  "transport": "streamable-http",
  "url": "https://mcp.tronsave.io/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

ENDPOINT 2

https://mcp.tronsave.io/testnet/mcp

No auth detected

MCP server metadata

Name
TronSave MCP Server
Version
1.0.0
Capabilities
tools.listChanged
Server instructions

TronSave MCP — buy/sell/extend TRON resources (ENERGY, BANDWIDTH) on the TronSave market. Networks (by endpoint): POST /mcp = mainnet, POST /testnet/mcp = testnet. Auth: call `tronsave_login` first, then send the returned `sessionId` as the `mcp-session-id` header on every later request. Two modes — (1) wallet SIGNATURE (preferred; required for platform tools): get a message via `tronsave_get_sign_message`, sign it client-side, submit `<signature>_<timestamp>`; (2) API KEY (`apiKey` param). Never send private keys to the server — signing is always client-side. Two tool families: - Platform (`tronsave_*`, GraphQL market): public discovery (list/estimate/order book/min price) plus signature-session mutations (create/cancel/update order, auto-sell, API keys). - Internal (`tronsave_internal_*` + `tronsave_get_internal_account`, REST, api-key account): estimate, create order, history, details, order book, extend — scoped to your deposited internal balance. Units: all prices are in SUN (1 TRX = 1,000,000 SUN). Durations are in seconds. FRESHNESS: market prices/availability change roughly every 3 seconds (one TRON block). Re-run an estimate/order-book read IMMEDIATELY before creating or updating an order; never reuse a quote more than a few seconds old.

Known tools 29

tronsave_get_internal_account

Retrieve the TronSave internal account profile for the current session: represent address, deposit address, and balance (SUN).

Inferred read-only
tronsave_get_deposit_address

Fetches the specific deposit address for the TronSave internal account.

Inferred read-only
tronsave_internal_order_history

List paginated order history for the internal account linked to the API key, newest first.

Inferred read-only
tronsave_internal_order_details

Fetch full details for one internal-account order by order ID.

Inferred read-only
tronsave_internal_order_book

Return the current TronSave market depth/price tiers for ENERGY or BANDWIDTH via the api-key REST endpoint.

Inferred read-only
tronsave_internal_order_estimate

Estimate the TRX cost and availability for a buy order before submitting it (api-key internal account).

Inferred read-only
tronsave_internal_order_create

Place a new buy order for ENERGY or BANDWIDTH on TronSave, paid from the internal account balance.

Inferred read-only
tronsave_internal_extend_delegates

Return extendable delegations for a receiver plus an `extendData` payload for the extension flow.

Inferred read-only
tronsave_internal_create_extend_request

Submit an extension request for existing delegated resources on TronSave, paid from the internal account.

Inferred read-only
tronsave_get_sign_message

Issue a wallet-signable timestamp message helper for signature login.

Potential side effects
tronsave_login

Authenticate with TronSave and create a server session.

Potential side effects
tronsave_get_user_info

Read the current authenticated user's profile and linked TronSave internal account.

Inferred read-only
tronsave_get_user_auto_setting

Read the current user's auto-sell configuration (`autoSettings`).

Inferred read-only
tronsave_get_user_permissions

Read the enabled permission operations (`autoSettings.

Inferred read-only
tronsave_estimate_buy_resource

Quote price and availability for buying ENERGY or BANDWIDTH for a receiver address before placing an order.

Inferred read-only
tronsave_get_order

Read one order by `id` and return its full snapshot for NORMAL, FAST, or EXTEND order types.

Inferred read-only
tronsave_list_orders

Query the order list with paging.

Inferred read-only
tronsave_list_order_books

Read market depth buckets for `ENERGY` or `BANDWIDTH`.

Inferred read-only
tronsave_get_min_price

Quote the minimum unit price for a buy.

Inferred read-only
tronsave_list_extendable_delegates

List extendable delegate candidates for a `receiver` and `resourceType` (ENERGY|BANDWIDTH).

Inferred read-only
tronsave_create_order

Create a new buy order on the TronSave market.

Potential side effects
tronsave_sell_order_manual

Manually execute seller-side fulfillment of an existing order with a wallet `signedTx`.

Potential side effects
tronsave_cancel_order

Cancel an open order by `orderId`.

Inferred read-only
tronsave_update_order

Update an open order by `orderId` with partial fields (`receiver`, `newPrice`).

Potential side effects
tronsave_register_auto_sell

Create the initial auto-sell configuration for the authenticated user.

Potential side effects
tronsave_update_auto_sell_setting

Update the existing auto-sell configuration with partial fields.

Potential side effects
tronsave_generate_api_key

Generate a new internal API key credential for the current user.

Inferred read-only
tronsave_revoke_api_key

Revoke the caller's current internal API key.

Inferred read-only
tronsave_delete_auto_buy_setting

Permanently delete one auto-buy rule by `id` (`MObjectId`).

Potential side effects

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.tronsave-mcp-server]
url = "https://mcp.tronsave.io/testnet/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "tronsave-mcp-server": {
      "type": "http",
      "url": "https://mcp.tronsave.io/testnet/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: tronsave-mcp-server
Remote MCP URL: https://mcp.tronsave.io/testnet/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "tronsave-mcp-server": {
      "url": "https://mcp.tronsave.io/testnet/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "tronsave-mcp-server": {
      "type": "http",
      "url": "https://mcp.tronsave.io/testnet/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "tronsave-mcp-server",
  "transport": "streamable-http",
  "url": "https://mcp.tronsave.io/testnet/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

TRUST AND VERIFICATION EVIDENCE

Loading Trust v2 evidence…

Checking the associated registrable domain. The BuiltWith key remains server-side.

Indexed

Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.