get_supported_tokens
Retrieves a list of supported tokens for a specific blockchain or across all chains, optionally including testnet tokens, leveraging the ValueRouter MCP Server for multi-chain USDC bridging.
Instructions
Get supported tokens for a specific chain or all chains
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chainId | No | Chain ID to get tokens for (optional) | |
includeTestnets | No | Whether to include testnet tokens |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"chainId": {
"description": "Chain ID to get tokens for (optional)",
"oneOf": [
{
"type": "number"
},
{
"type": "string"
}
]
},
"includeTestnets": {
"default": false,
"description": "Whether to include testnet tokens",
"type": "boolean"
}
},
"type": "object"
}