search_official_token_address
Retrieve the official token address and symbol using a token symbol or address. Essential for verifying token details before initiating blockchain operations in the Armor Crypto MCP ecosystem.
Instructions
Get the official token address and symbol for a token symbol or token address.
Try to use this first to get address and symbol of coin. If not found, use search_token_details to get details.
Expects a TokenDetailsRequestContainer, returns a TokenDetailsResponseContainer.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
token_details_requests | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"TokenDetailsRequest": {
"properties": {
"query": {
"description": "token symbol or address",
"title": "Query",
"type": "string"
}
},
"required": [
"query"
],
"title": "TokenDetailsRequest",
"type": "object"
},
"TokenDetailsRequestContainer": {
"properties": {
"token_details_requests": {
"items": {
"$ref": "#/$defs/TokenDetailsRequest"
},
"title": "Token Details Requests",
"type": "array"
}
},
"required": [
"token_details_requests"
],
"title": "TokenDetailsRequestContainer",
"type": "object"
}
},
"properties": {
"token_details_requests": {
"$ref": "#/$defs/TokenDetailsRequestContainer"
}
},
"required": [
"token_details_requests"
],
"title": "search_official_token_addressArguments",
"type": "object"
}