getPositionDetails
Retrieve detailed information about a specific liquidity pool position by providing the token ID and chain ID on the Ethereum-based agentek-eth MCP server.
Instructions
Gets detailed information about a specific LP position
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chainId | Yes | ||
tokenId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"chainId": {
"type": "number"
},
"tokenId": {
"type": "string"
}
},
"required": [
"tokenId",
"chainId"
],
"type": "object"
}