get_token_info
Retrieve comprehensive SRC-20 token details by ticker symbol, including optional holder statistics and recent transfers, using the Stampchain MCP Server.
Instructions
Retrieve detailed information about a specific SRC-20 token by its ticker symbol
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include_holders | No | Whether to include holder statistics | |
include_transfers | No | Whether to include recent transfer data | |
tick | Yes | The ticker symbol of the SRC-20 token |
Input Schema (JSON Schema)
{
"properties": {
"include_holders": {
"default": false,
"description": "Whether to include holder statistics",
"type": "boolean"
},
"include_transfers": {
"default": false,
"description": "Whether to include recent transfer data",
"type": "boolean"
},
"tick": {
"description": "The ticker symbol of the SRC-20 token",
"type": "string"
}
},
"required": [
"tick"
],
"type": "object"
}