get-cl-user-positions
Retrieve all concentrated liquidity positions for a user on Osmosis, with optional filtering by pool ID, using the MCP server to interact with blockchain data.
Instructions
Returns all CL positions for a user across all pools
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | The user's Osmosis address | |
poolId | No | Optional: filter by specific pool ID |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "The user's Osmosis address",
"type": "string"
},
"poolId": {
"description": "Optional: filter by specific pool ID",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}