tapp_get_pool_info
Retrieve detailed information about a specific liquidity pool by providing its ID, using the tool from Tapp Exchange MCP Server to support pool management and trading operations.
Instructions
Get detailed information about a specific pool by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
poolId | Yes | The pool ID to get information for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"poolId": {
"description": "The pool ID to get information for",
"type": "string"
}
},
"required": [
"poolId"
],
"type": "object"
}