# Rugcheck Token Information Tool

#### Rugcheck Token Information Tool (`rugcheck_token_information_tool`)

Fetches a detailed token analysis report from `rugcheck.xyz`. This tool is essential for assessing a token's fundamentals, including potential risks, holder distribution, and liquidity.

{% hint style="info" %}
**Input:** Requires a Solana token contract `token_address`.
{% endhint %}

```python
class RugcheckTokenInformationInput(BaseModel):
    token_address: str # The token address to check on rugcheck.xyz
```

**Key Functionality:**

* Retrieves a comprehensive report for the given token address from the `rugcheck.xyz` API.
* Provides insights on:
  * Creator details (address, balance).
  * Token supply and distribution (top holders, insider status).
  * Liquidity market information.
  * Rugcheck score and a list of identified potential risks.

***

**Sample Usage Queries (How an AI might use it):**

* "Get the rugcheck report for token `EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm`."
* "Run a rugcheck on `DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263`."
* "What does rugcheck.xyz say about `4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R`?"
* "Analyze token `HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3` for risks."
* "Fetch rugcheck details for mint address `token_mint_address_placeholder`."
* "Show me the top holders and liquidity for `another_token_address` via rugcheck."
* "What is the rugcheck score for `contract_addr_here`?"
* "Check `mint_XYZ` on rugcheck."
* "How does FARTCOIN look like on rugcheck?"

***

```python
class RugcheckTokenInformationTool(BaseTool):
    name: ClassVar[str] = "rugcheck_token_information_tool"
    description: ClassVar[str] = "Get detailed token information including creator details, supply, top holders..."
    args_schema: ClassVar[Type[BaseModel]] = RugcheckTokenInformationInput
```

***

**Important:**

* This tool operates **asynchronously** (`_arun`).
* Relies entirely on the external `rugcheck.xyz` API; its availability and the data's accuracy depend on this third-party service.
