Data Collection
tronsave.io
Provides access to TronSave account and order data, including balances, deposit addresses, order history, and market depth.
ENDPOINT 1
https://mcp.tronsave.io/mcp
MCP server metadata
- Name
- TronSave MCP Server
- Version
- 1.0.0
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_accountRetrieve the TronSave internal account profile for the current session: represent address, deposit address, and balance (SUN).
Inferred read-onlytronsave_get_deposit_addressFetches the specific deposit address for the TronSave internal account.
Inferred read-onlytronsave_internal_order_historyList paginated order history for the internal account linked to the API key, newest first.
Inferred read-onlytronsave_internal_order_detailsFetch full details for one internal-account order by order ID.
Inferred read-onlytronsave_internal_order_bookReturn the current TronSave market depth/price tiers for ENERGY or BANDWIDTH via the api-key REST endpoint.
Inferred read-onlytronsave_internal_order_estimateEstimate the TRX cost and availability for a buy order before submitting it (api-key internal account).
Inferred read-onlytronsave_internal_order_createPlace a new buy order for ENERGY or BANDWIDTH on TronSave, paid from the internal account balance.
Inferred read-onlytronsave_internal_extend_delegatesReturn extendable delegations for a receiver plus an `extendData` payload for the extension flow.
Inferred read-onlytronsave_internal_create_extend_requestSubmit an extension request for existing delegated resources on TronSave, paid from the internal account.
Inferred read-onlytronsave_get_sign_messageIssue a wallet-signable timestamp message helper for signature login.
Potential side effectstronsave_get_user_infoRead the current authenticated user's profile and linked TronSave internal account.
Inferred read-onlytronsave_get_user_auto_settingRead the current user's auto-sell configuration (`autoSettings`).
Inferred read-onlytronsave_get_user_permissionsRead the enabled permission operations (`autoSettings.
Inferred read-onlytronsave_estimate_buy_resourceQuote price and availability for buying ENERGY or BANDWIDTH for a receiver address before placing an order.
Inferred read-onlytronsave_get_orderRead one order by `id` and return its full snapshot for NORMAL, FAST, or EXTEND order types.
Inferred read-onlytronsave_list_extendable_delegatesList extendable delegate candidates for a `receiver` and `resourceType` (ENERGY|BANDWIDTH).
Inferred read-onlytronsave_sell_order_manualManually execute seller-side fulfillment of an existing order with a wallet `signedTx`.
Potential side effectstronsave_update_orderUpdate an open order by `orderId` with partial fields (`receiver`, `newPrice`).
Potential side effectstronsave_register_auto_sellCreate the initial auto-sell configuration for the authenticated user.
Potential side effectstronsave_update_auto_sell_settingUpdate the existing auto-sell configuration with partial fields.
Potential side effectstronsave_generate_api_keyGenerate a new internal API key credential for the current user.
Inferred read-onlytronsave_delete_auto_buy_settingPermanently delete one auto-buy rule by `id` (`MObjectId`).
Potential side effectsCONNECT 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
MCP server metadata
- Name
- TronSave MCP Server
- Version
- 1.0.0
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_accountRetrieve the TronSave internal account profile for the current session: represent address, deposit address, and balance (SUN).
Inferred read-onlytronsave_get_deposit_addressFetches the specific deposit address for the TronSave internal account.
Inferred read-onlytronsave_internal_order_historyList paginated order history for the internal account linked to the API key, newest first.
Inferred read-onlytronsave_internal_order_detailsFetch full details for one internal-account order by order ID.
Inferred read-onlytronsave_internal_order_bookReturn the current TronSave market depth/price tiers for ENERGY or BANDWIDTH via the api-key REST endpoint.
Inferred read-onlytronsave_internal_order_estimateEstimate the TRX cost and availability for a buy order before submitting it (api-key internal account).
Inferred read-onlytronsave_internal_order_createPlace a new buy order for ENERGY or BANDWIDTH on TronSave, paid from the internal account balance.
Inferred read-onlytronsave_internal_extend_delegatesReturn extendable delegations for a receiver plus an `extendData` payload for the extension flow.
Inferred read-onlytronsave_internal_create_extend_requestSubmit an extension request for existing delegated resources on TronSave, paid from the internal account.
Inferred read-onlytronsave_get_sign_messageIssue a wallet-signable timestamp message helper for signature login.
Potential side effectstronsave_get_user_infoRead the current authenticated user's profile and linked TronSave internal account.
Inferred read-onlytronsave_get_user_auto_settingRead the current user's auto-sell configuration (`autoSettings`).
Inferred read-onlytronsave_get_user_permissionsRead the enabled permission operations (`autoSettings.
Inferred read-onlytronsave_estimate_buy_resourceQuote price and availability for buying ENERGY or BANDWIDTH for a receiver address before placing an order.
Inferred read-onlytronsave_get_orderRead one order by `id` and return its full snapshot for NORMAL, FAST, or EXTEND order types.
Inferred read-onlytronsave_list_extendable_delegatesList extendable delegate candidates for a `receiver` and `resourceType` (ENERGY|BANDWIDTH).
Inferred read-onlytronsave_sell_order_manualManually execute seller-side fulfillment of an existing order with a wallet `signedTx`.
Potential side effectstronsave_update_orderUpdate an open order by `orderId` with partial fields (`receiver`, `newPrice`).
Potential side effectstronsave_register_auto_sellCreate the initial auto-sell configuration for the authenticated user.
Potential side effectstronsave_update_auto_sell_settingUpdate the existing auto-sell configuration with partial fields.
Potential side effectstronsave_generate_api_keyGenerate a new internal API key credential for the current user.
Inferred read-onlytronsave_delete_auto_buy_settingPermanently delete one auto-buy rule by `id` (`MObjectId`).
Potential side effectsCONNECT 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.
Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.