npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@justlend/mcp-server-justlend

v1.0.1

Published

MCP server for JustLend V1 DAO on TRON blockchain. Supports supply, borrow, repay, withdraw, market data, mining rewards (USDD/WBTC), API integration, general TRON chain utilities, and AI-guided DeFi prompts.

Readme

mcp-server-justlend

License: MIT TRON Network TypeScript MCP JustLend npm

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
  • Energy Rental: Rent energy from JustLend, calculate rental prices, query rental orders, return/cancel rentals
  • sTRX Staking: Stake TRX to receive sTRX, unstake sTRX, claim staking rewards, check withdrawal eligibility

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

Installation

git clone https://github.com/your-org/mcp-server-justlend.git
cd mcp-server-justlend
npm install

Configuration

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": {
    "mcp-server-justlend": {
      "type": "stdio",
      "command": "npx",
      "args": ["tsx", "@justlend/mcp-server-justlend"],
      "env": {
        "TRONGRID_API_KEY": "SET_VIA_SYSTEM_ENV",
        "TRON_PRIVATE_KEY": "SET_VIA_SYSTEM_ENV"
      }
    }
  }
}

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "mcp-server-justlend": {
      "type": "stdio",
      "command": "npx",
      "args": ["tsx", "@justlend/mcp-server-justlend"]
      "env": {
        "TRONGRID_API_KEY": "SET_VIA_SYSTEM_ENV",
        "TRON_PRIVATE_KEY": "SET_VIA_SYSTEM_ENV"
      }

    }
  }
}

Usage

# Stdio mode (for MCP clients)
npm start

# HTTP/SSE mode (for remote clients)
npm run start:http

# Development with auto-reload
npm run dev

API Reference

Tools (50 total)

Wallet & Network

| Tool | Description | Write? | |------|-------------|--------| | get_wallet_address | Show configured wallet address | No | | get_supported_networks | List available networks | No | | get_supported_markets | List all jToken markets with addresses | No |

Market Data

| Tool | Description | Write? | |------|-------------|--------| | get_market_data | Detailed data for one market (APY, TVL, rates) - Contract query | No | | get_all_markets | Overview of all markets - Contract query | No | | get_protocol_summary | Comptroller config & protocol parameters - Contract query | No | | get_markets_from_api | [API] All market data with mining rewards & trends | No | | get_dashboard_from_api | [API] Protocol-level statistics (TVL, users, etc.) | No | | get_jtoken_details_from_api | [API] Detailed jToken info with interest rate model | No |

Account & Balances

| Tool | Description | Write? | |------|-------------|--------| | get_account_summary | Full position: supplies, borrows, health factor - Contract query | No | | get_account_data_from_api | [API] Enhanced account data with mining rewards & trends | No | | check_allowance | Check TRC20 approval for jToken | No | | get_trx_balance | TRX balance | No | | get_token_balance | TRC20 token balance | No |

Lending Operations

| Tool | Description | Write? | |------|-------------|--------| | supply | Deposit assets to earn interest | Yes | | withdraw | Withdraw supplied assets | Yes | | withdraw_all | Withdraw all from a market | Yes | | borrow | Borrow against collateral | Yes | | repay | Repay outstanding borrows | Yes | | enter_market | Enable market as collateral | Yes | | exit_market | Disable market as collateral | Yes | | approve_underlying | Approve TRC20 for jToken | Yes | | claim_rewards | Claim mining rewards | Yes |

JST Voting / Governance

| Tool | Description | Write? | |------|-------------|--------| | get_proposal_list | List all governance proposals with status and vote counts | No | | get_user_vote_status | User's voting history: voted proposals, withdrawable votes | No | | get_vote_info | Voting power: JST balance, available votes, locked votes | No | | get_locked_votes | Votes locked in a specific proposal | No | | check_jst_allowance_for_voting | Check JST approval for WJST voting contract | No | | approve_jst_for_voting | Approve JST for the WJST voting contract | Yes | | deposit_jst_for_votes | Deposit JST to get voting power (1 JST = 1 Vote) | Yes | | withdraw_votes_to_jst | Withdraw WJST back to JST | Yes | | cast_vote | Cast for/against votes on a proposal | Yes | | withdraw_votes_from_proposal | Reclaim votes from completed proposals | Yes |

Energy Rental

| Tool | Description | Write? | |------|-------------|--------| | get_energy_rental_dashboard | Market data: TRX price, exchange rate, APY, energy per TRX | No | | get_energy_rental_params | On-chain params: fees, limits, pause status, usage charge ratio | No | | calculate_energy_rental_price | Estimate cost for renting energy (prepayment, deposit, daily cost) | No | | get_energy_rental_rate | Current rental rate for a given TRX amount | No | | get_user_energy_rental_orders | User's rental orders (as renter, receiver, or all) | No | | get_energy_rent_info | On-chain rental info for a renter-receiver pair | No | | get_return_rental_info | Return/cancel estimation (refund, remaining rent, daily cost) | No | | rent_energy | Rent energy for a receiver (with balance, pause, limit checks) | Yes | | return_energy_rental | Cancel an active rental (with active order check) | Yes |

sTRX Staking

| Tool | Description | Write? | |------|-------------|--------| | get_strx_dashboard | Staking market data: exchange rate, APY, total supply | No | | get_strx_account | User staking account: staked amount, income, rewards | No | | get_strx_balance | sTRX token balance for an address | No | | check_strx_withdrawal_eligibility | Check unbonding status, pending/completed withdrawal rounds | No | | stake_trx_to_strx | Stake TRX to receive sTRX (with balance check) | Yes | | unstake_strx | Unstake sTRX to receive TRX back (with balance check) | Yes | | claim_strx_rewards | Claim all staking rewards (with rewards existence check) | Yes |

Prompts (AI-Guided Workflows)

| Prompt | Description | |--------|-------------| | supply_assets | Step-by-step supply with balance checks and approval | | borrow_assets | Safe borrowing with risk assessment and health factor checks | | repay_borrow | Guided repayment with verification | | analyze_portfolio | Comprehensive portfolio analysis with risk scoring | | compare_markets | Find best supply/borrow opportunities | | rent_energy | Guided energy rental with price estimation and balance checks | | stake_trx | Guided TRX staking to sTRX with APY info and verification |

Architecture

mcp-server-justlend/
├── 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
│   │       ├── energy-rental.ts # Energy rental: query, calculate, rent, return
│   │       ├── strx-staking.ts  # sTRX staking: stake, unstake, rewards, withdrawal check
│   │       ├── # — 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)
            ├── energy-rental.test.ts # Integration: energy rental queries; Write: skipped (TEST_ENERGY_RENTAL=1)
            ├── strx-staking.test.ts  # Integration: sTRX queries; Write: skipped (TEST_STRX_STAKING=1)
            └── wallet.test.ts      # Unit: skipped without TRON_PRIVATE_KEY

Testing

# 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

# Energy rental & sTRX staking read tests
npx vitest run tests/core/services/energy-rental.test.ts
npx vitest run tests/core/services/strx-staking.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.ts
TRON_PRIVATE_KEY=xxx TEST_ENERGY_RENTAL=1 npx vitest run tests/core/services/energy-rental.test.ts
TRON_PRIVATE_KEY=xxx TEST_STRX_STAKING=1 npx vitest run tests/core/services/strx-staking.test.ts

Rate limiting: Integration tests make real RPC calls to TronGrid. Without TRONGRID_API_KEY the free tier limits to a few requests per second. Run test files individually, or set TRONGRID_API_KEY to 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: true in MCP annotations
  • Health factor checks in prompts prevent dangerous borrowing
  • Always test on Nile testnet before mainnet operations
  • Be cautious with unlimited approvals (approve_underlying with max)
  • Never share your claude_desktop_config.json if 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

"How much does it cost to rent 300,000 energy for 7 days?" → AI calls calculate_energy_rental_price with energyAmount=300000, durationDays=7, returns cost breakdown

"Rent 500,000 energy to address TXxx... for 14 days" → AI uses rent_energy prompt: checks balance → checks rental status → calculates price → rents energy → verifies

"Cancel my energy rental to TXxx..." → AI calls get_energy_rent_info to verify active rental → calls return_energy_rental → confirms refund

"Stake 1000 TRX to earn sTRX rewards" → AI uses stake_trx prompt: checks balance → checks exchange rate & APY → stakes TRX → verifies sTRX received

"Do I have any sTRX rewards to claim?" → AI calls get_strx_account to check claimable rewards → calls claim_strx_rewards if available

"Can I withdraw my unstaked TRX?" → AI calls check_strx_withdrawal_eligibility to check unbonding status and completed withdrawal rounds

License

MIT License Copyright (c) 2026 JustLend