mcp-server-TLD
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-server-TLDcheck my health factor on JustLend"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mcp-server-TLD
A Model Context Protocol (MCP) server that enables AI agents to interact with the JustLend DAO lending protocol on TRON. Supply assets, borrow against collateral, manage positions, and analyze DeFi portfolios ā all through a unified AI interface.
Beyond JustLend-specific operations, the server also exposes a full set of general-purpose TRON chain utilities ā balance queries, block/transaction data, token metadata, TRX transfers, smart contract reads/writes, staking (Stake 2.0), multicall, and more.
Overview
JustLend DAO is the largest lending protocol on TRON, based on the Compound V2 architecture. This MCP server wraps the full protocol functionality into tools and guided prompts that AI agents (Claude Desktop, Cursor, etc.) can use.
š Current Version: JustLend V1
This MCP server currently supports JustLend V1 protocol. All contract addresses, ABIs, calculation functions, and lending operations are for V1.
Key Capabilities
JustLend Protocol
Market Data: Real-time APYs, TVL, utilization rates, prices for all markets
Direct contract queries for on-chain accuracy
API-based queries for comprehensive market data (more stable, includes historical data and mining rewards)
Account Data: Full position analysis with API support
Contract-based: Health factor, collateral, borrow positions
API-based: Enhanced data with mining rewards, historical trends, risk metrics
Mining Rewards: Advanced mining reward calculation (based on justlend-app logic)
Detailed breakdown by market and reward token (USDD, TRX, WBTC, etc.)
Separates new period vs. last period rewards
USD value calculation with live token prices
Mining status tracking (ongoing/paused/ended) and period end times
Supply: Deposit TRX or TRC20 tokens to earn interest (mint jTokens)
Borrow: Borrow assets against your collateral with health factor monitoring
Repay: Repay outstanding borrows with full or partial amounts
Withdraw: Redeem jTokens back to underlying assets
Collateral Management: Enter/exit markets, manage what counts as collateral
Portfolio Analysis: AI-guided risk assessment, health factor monitoring, optimization
Token Approvals: Manage TRC20 approvals for jToken contracts
JST Voting / Governance: View proposals, cast votes, deposit/withdraw JST for voting power, reclaim votes
General TRON Chain
Balances: TRX balance (with Sun/TRX conversion), TRC20/TRC1155 token balances
Blocks: Latest block, block by number/hash, block number, chain ID
Transactions: Fetch transaction details, receipts, wait for confirmation
Contracts: Read/write any contract, fetch on-chain ABI, multicall (v2 & v3), deploy, estimate energy
Token Metadata: TRC20 info (name/symbol/decimals/supply), TRC721 metadata, TRC1155 URI
Transfers: Send TRX, transfer TRC20 tokens, approve spenders
Staking (Stake 2.0): Freeze/unfreeze TRX for BANDWIDTH or ENERGY, withdraw expired unfreeze
Address Utilities: Hex ā Base58 conversion, address validation, resolution
Wallet: Sign messages, sign typed data (EIP-712), HD wallet derivation from mnemonic
Supported Markets
jToken | Underlying | Description |
jTRX | TRX | Native TRON token |
jUSDT | USDT | Tether USD |
jUSDC | USDC | USD Coin |
jBTC | BTC | Bitcoin (wrapped) |
jETH | ETH | Ethereum (wrapped) |
jSUN | SUN | SUN token |
jWIN | WIN | WINkLink |
jTUSD | TUSD | TrueUSD |
Prerequisites
Node.js 20.0.0 or higher
Optional: TronGrid API key for reliable mainnet access (strongly recommended)
Installation
git clone https://github.com/your-org/mcp-server-TLD.git
cd mcp-server-TLD
npm installConfiguration
Environment Variables
SECURITY: Never save private keys in config files. Use environment variables.
# Required for write operations (supply, borrow, transfer, stake, etc.)
export TRON_PRIVATE_KEY="your_private_key_hex"
# OR use a mnemonic phrase
export TRON_MNEMONIC="word1 word2 ... word12"
export TRON_ACCOUNT_INDEX="0" # Optional HD wallet account index, default: 0
# Strongly recommended ā avoids TronGrid 429 rate limiting on mainnet
export TRONGRID_API_KEY="your_trongrid_api_key"Client Configuration
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"justlend": {
"command": "npx",
"args": ["tsx", "/path/to/mcp-server-TLD/src/index.ts"],
"env": {
"TRONGRID_API_KEY": "your_key"
}
}
}
}Cursor
Add to .cursor/mcp.json:
{
"mcpServers": {
"justlend": {
"command": "npx",
"args": ["tsx", "/path/to/mcp-server-TLD/src/index.ts"]
}
}
}Usage
# Stdio mode (for MCP clients)
npm start
# HTTP/SSE mode (for remote clients)
npm run start:http
# Development with auto-reload
npm run devAPI Reference
Tools (34 total)
Wallet & Network
Tool | Description | Write? |
| Show configured wallet address | No |
| List available networks | No |
| List all jToken markets with addresses | No |
Market Data
Tool | Description | Write? |
| Detailed data for one market (APY, TVL, rates) - Contract query | No |
| Overview of all markets - Contract query | No |
| Comptroller config & protocol parameters - Contract query | No |
| [API] All market data with mining rewards & trends | No |
| [API] Protocol-level statistics (TVL, users, etc.) | No |
| [API] Detailed jToken info with interest rate model | No |
Account & Balances
Tool | Description | Write? |
| Full position: supplies, borrows, health factor - Contract query | No |
| [API] Enhanced account data with mining rewards & trends | No |
| Check TRC20 approval for jToken | No |
| TRX balance | No |
| TRC20 token balance | No |
Lending Operations
Tool | Description | Write? |
| Deposit assets to earn interest | Yes |
| Withdraw supplied assets | Yes |
| Withdraw all from a market | Yes |
| Borrow against collateral | Yes |
| Repay outstanding borrows | Yes |
| Enable market as collateral | Yes |
| Disable market as collateral | Yes |
| Approve TRC20 for jToken | Yes |
| Claim mining rewards | Yes |
JST Voting / Governance
Tool | Description | Write? |
| List all governance proposals with status and vote counts | No |
| User's voting history: voted proposals, withdrawable votes | No |
| Voting power: JST balance, available votes, locked votes | No |
| Votes locked in a specific proposal | No |
| Check JST approval for WJST voting contract | No |
| Approve JST for the WJST voting contract | Yes |
| Deposit JST to get voting power (1 JST = 1 Vote) | Yes |
| Withdraw WJST back to JST | Yes |
| Cast for/against votes on a proposal | Yes |
| Reclaim votes from completed proposals | Yes |
Prompts (AI-Guided Workflows)
Prompt | Description |
| Step-by-step supply with balance checks and approval |
| Safe borrowing with risk assessment and health factor checks |
| Guided repayment with verification |
| Comprehensive portfolio analysis with risk scoring |
| Find best supply/borrow opportunities |
Architecture
mcp-server-TLD/
āāā src/
ā āāā core/
ā ā āāā chains.ts # Network configs + JustLend contract addresses
ā ā āāā abis.ts # jToken, Comptroller, Oracle, TRC20 ABIs
ā ā āāā tools.ts # MCP tool registrations
ā ā āāā prompts.ts # AI-guided workflow prompts
ā ā āāā resources.ts # Static protocol info resource
ā ā āāā services/
ā ā āāā # ā JustLend-specific ā
ā ā āāā clients.ts # TronWeb client factory (cached)
ā ā āāā wallet.ts # Key/mnemonic management, signMessage, signTypedData
ā ā āāā markets.ts # APY, TVL, utilization, prices
ā ā āāā account.ts # User positions, liquidity, allowances
ā ā āāā lending.ts # supply, borrow, repay, withdraw, collateral
ā ā āāā voting.ts # JST governance: proposals, cast vote, deposit/withdraw WJST
ā ā āāā # ā General TRON chain ā
ā ā āāā address.ts # Hex ā Base58 conversion, validation
ā ā āāā balance.ts # TRX balance (rich), TRC20/TRC1155 balances
ā ā āāā blocks.ts # Block queries, block number, chain ID
ā ā āāā transactions.ts# getTransaction, getTransactionInfo, waitForTransaction
ā ā āāā transfer.ts # transferTRX, transferTRC20, approveTRC20
ā ā āāā tokens.ts # TRC20/TRC721/TRC1155 metadata
ā ā āāā contracts.ts # readContract, writeContract, multicall, deploy, estimateEnergy
ā ā āāā multicall-abi.ts # Multicall2 & Multicall3 ABIs
ā ā āāā staking.ts # Stake 2.0: freeze, unfreeze, withdrawExpireUnfreeze
ā ā āāā utils.ts # toSun/fromSun, formatJson, hexToNumber, isAddress, ā¦
ā āāā server/
ā ā āāā server.ts # MCP server init
ā ā āāā http-server.ts # Express HTTP/SSE transport
ā āāā index.ts # Stdio entry point
āāā bin/cli.js # CLI entry for npx
āāā tests/
āāā core/
āāā chains.test.ts
āāā services/
āāā services.test.ts # Client cache, legacy balance tests
āāā address.test.ts # Pure: address format conversion (16 tests)
āāā utils.test.ts # Pure: unit conversions, formatters (26 tests)
āāā balance.test.ts # Integration: TRX & TRC20 balances
āāā blocks.test.ts # Integration: block queries
āāā contracts.test.ts # Mixed: pure ABI helpers + integration reads
āāā tokens.test.ts # Integration: TRC20 token metadata
āāā transactions.test.ts# Integration: transaction fetch
āāā transfer.test.ts # Write: skipped by default (TEST_TRANSFER=1)
āāā staking.test.ts # Write: skipped by default (TEST_STAKING=1)
āāā wallet.test.ts # Unit: skipped without TRON_PRIVATE_KEYTesting
# Run all tests (pure/unit tests always pass; integration tests need network)
npm test
# Run individual test files (recommended to avoid TronGrid rate limits)
npx vitest run tests/core/services/utils.test.ts
npx vitest run tests/core/services/address.test.ts
npx vitest run tests/core/services/balance.test.ts
npx vitest run tests/core/services/blocks.test.ts
npx vitest run tests/core/services/contracts.test.ts
npx vitest run tests/core/services/transactions.test.ts
npx vitest run tests/core/services/tokens.test.ts
# Enable write/staking tests (uses real funds ā use Nile testnet!)
TRON_PRIVATE_KEY=xxx TEST_TRANSFER=1 npx vitest run tests/core/services/transfer.test.ts
TRON_PRIVATE_KEY=xxx TEST_STAKING=1 npx vitest run tests/core/services/staking.test.tsRate limiting: Integration tests make real RPC calls to TronGrid. Without
TRONGRID_API_KEYthe free tier limits to a few requests per second. Run test files individually, or setTRONGRID_API_KEYto avoid 429 errors.
Security Considerations
Private keys are read from environment variables only, never exposed via MCP tools
Write operations are clearly marked with
destructiveHint: truein MCP annotationsHealth factor checks in prompts prevent dangerous borrowing
Always test on Nile testnet before mainnet operations
Be cautious with unlimited approvals (
approve_underlyingwithmax)Never share your
claude_desktop_config.jsonif it contains keys
Example Conversations
"What are the best supply rates on JustLend right now?"
ā AI calls get_all_markets, sorts by supplyAPY, presents ranking
"I want to supply 10,000 USDT to earn interest"
ā AI uses supply_assets prompt: checks balance ā approves USDT ā supplies ā verifies
"Am I at risk of liquidation?"
ā AI calls get_account_summary, analyzes health factor, warns if < 1.5
"Borrow 500 USDT against my TRX collateral"
ā AI uses borrow_assets prompt: checks collateral ā calculates new health factor ā executes if safe
"What is the TRX balance of address TXxx...?" ā AI calls the general-purpose TRX balance tool, returns balance in both TRX and Sun
"Freeze 100 TRX for ENERGY" ā AI calls staking service to freeze via Stake 2.0, returns transaction hash
"Show me the latest governance proposals"
ā AI calls get_proposal_list, displays proposals sorted by ID with status and vote counts
"I want to vote for proposal #425 with 1000 JST"
ā AI checks get_vote_info ā if no votes, suggests approve_jst_for_voting + deposit_jst_for_votes ā then cast_vote
"Withdraw my votes from completed proposals"
ā AI calls get_user_vote_status to find withdrawable proposals ā calls withdraw_votes_from_proposal for each
License
MIT
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bbsyaya/mcp-server-tld'
If you have feedback or need assistance with the MCP directory API, please join our Discord server