getPoolFeeData
Retrieve fee-related data for a specific Ethereum-based pool by providing its address and chain ID using the 'agentek-eth' MCP server tool.
Instructions
Gets fee-related data for a pool
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chainId | Yes | ||
poolAddress | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"chainId": {
"type": "number"
},
"poolAddress": {
"type": "string"
}
},
"required": [
"poolAddress",
"chainId"
],
"type": "object"
}