research-token
Analyze token details by specifying name, ticker, and source to gather insights from platforms like IQ Wiki or CoinMarketCap.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
source | Yes | Source to research (e.g., 'IQ Wiki', 'CoinMarketCap') | |
tokenName | Yes | Name of the token | |
tokenTicker | Yes | Ticker symbol of the token |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"source": {
"description": "Source to research (e.g., 'IQ Wiki', 'CoinMarketCap')",
"type": "string"
},
"tokenName": {
"description": "Name of the token",
"type": "string"
},
"tokenTicker": {
"description": "Ticker symbol of the token",
"type": "string"
}
},
"required": [
"tokenName",
"tokenTicker",
"source"
],
"type": "object"
}