AI Agent Skills for TRON

What Are Skills?

Skills are reusable instruction sets that let AI agents query TRON blockchain data through natural language, without manual API calls.

Key Benefits:

  • 🚀 Zero Code: Ask questions in natural language
  • 🎯 Structured Output: Automatically aggregates multiple API calls into formatted reports
  • 🔄 Reusable: 8 pre-built workflows covering common analysis scenarios

Quick Start

1. Install MCP Server

Add to your Claude Code MCP config (~/.claude/mcp.json or project .mcp.json):

{
  "mcpServers": {
    "trongrid": {
      "type": "http",
      "url": "https://mcp.trongrid.io/mcp"
    }
  }
}

Optional: Add API key header for higher rate limits:

{
  "mcpServers": {
    "trongrid": {
      "type": "http",
      "url": "https://mcp.trongrid.io/mcp",
      "headers": {
        "TRON-PRO-API-KEY": "your-api-key"
      }
    }
  }
}

Get API Key: https://www.trongrid.io

2. Start Asking

Skills activate automatically. Simply ask questions:

"Analyze wallet TRfYy..."
"What is the latest block?"
"Tell me about USDT on TRON"

Available Skills

SkillTrigger ExamplesPurpose
Account Profiling"Analyze this wallet"Comprehensive account analysis with assets, resources, and activity
Block Info"What is the latest block?"Block data, rewards, producer info, and transaction breakdown
Contract Analysis"Is this contract safe?"Smart contract inspection with ABI, callers, and safety assessment
Data Insights"How is the TRON network doing?"Network analytics with activity metrics and trending data
Token List"Top TRON tokens"Token discovery with market metrics and rankings
Token Scanner"Tell me about USDT on TRON"Deep dive into specific tokens with holder analysis and safety score
Transaction Info"Check transaction [hash]"Transaction decoding with resource consumption and event logs
TRX Info"TRX price", "TRX burn rate"TRX economics with supply dynamics and network metrics

Use Cases

Investment Analysis

Security Audit

Data Research

Troubleshooting

MCP Server Not Connected

Symptoms: Skills don't activate, tools not found

Solutions:

  1. Check ~/.claude/mcp.json configuration
  2. Restart Claude Code
  3. Test connection: npx @trongrid/mcp-server

Invalid API Key

Symptoms: Authentication errors on tool calls

Solutions:

  1. Get new API key from https://www.trongrid.io
  2. Update TRONGRID_API_KEY in mcp.json
  3. Restart Claude Code

Rate Limit Exceeded

Symptoms: Requests rejected, rate limit error

Solutions:

  1. Free tier: Wait 1 second and retry
  2. Upgrade to paid API key (1000 req/s)

Related Resources