get_price
Retrieve the current market price of a token by providing its address and optional blockchain details (chain or specific chain) for accurate results on the Trading Simulator MCP Server.
Instructions
Get the current price for a token
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chain | No | Optional blockchain type | |
specificChain | No | Optional specific chain for EVM tokens | |
token | Yes | Token address |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"chain": {
"description": "Optional blockchain type",
"enum": [
"svm",
"evm"
],
"type": "string"
},
"specificChain": {
"description": "Optional specific chain for EVM tokens",
"enum": [
"eth",
"polygon",
"bsc",
"arbitrum",
"base",
"optimism",
"avalanche",
"linea",
"svm"
],
"type": "string"
},
"token": {
"description": "Token address",
"type": "string"
}
},
"required": [
"token"
],
"type": "object"
}