coinchanGetCoins
Retrieve a list of Coinchan token IDs within specified index ranges on the Ethereum blockchain using the agentek-eth MCP server.
Instructions
Fetch a list of Coinchan token IDs between index ranges
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chainId | Yes | ||
finish | Yes | ||
start | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"chainId": {
"type": "number"
},
"finish": {
"type": "number"
},
"start": {
"type": "number"
}
},
"required": [
"chainId",
"start",
"finish"
],
"type": "object"
}