get_chain_id
Retrieve the chain ID for a specified blockchain network by providing the chain name, enabling accurate identification in blockchain interactions via the Etherscan MCP Tool.
Instructions
Get the chain ID for a given chain name
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chain_name | Yes | The name of the chain to get the chain ID for |
Input Schema (JSON Schema)
{
"properties": {
"chain_name": {
"description": "The name of the chain to get the chain ID for",
"type": "string"
}
},
"required": [
"chain_name"
],
"type": "object"
}