intentIncreaseLiquidity
Enhances liquidity for an existing Uniswap V3 position by adding desired amounts of tokens, specifying slippage tolerance, and setting a deadline. Supports Ethereum-based automation via agentek-eth MCP server.
Instructions
Adds more liquidity to an existing Uniswap V3 position
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount0Desired | Yes | ||
amount1Desired | Yes | ||
chainId | Yes | ||
deadline | No | ||
slippageTolerance | No | ||
tokenId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"amount0Desired": {
"type": "string"
},
"amount1Desired": {
"type": "string"
},
"chainId": {
"type": "number"
},
"deadline": {
"type": "number"
},
"slippageTolerance": {
"default": 0.5,
"type": "number"
},
"tokenId": {
"type": "string"
}
},
"required": [
"tokenId",
"amount0Desired",
"amount1Desired",
"chainId"
],
"type": "object"
}