gateway_execute_rpc
Execute RPC calls on specific blockchain networks via the Tatum MCP Server. Input chain, method, and parameters to interact with blockchain data and perform operations directly.
Instructions
[gateway] Execute an RPC call on a specific chain
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chain | Yes | The blockchain to execute the RPC call on | |
method | Yes | The RPC method to call | |
params | No | The parameters for the RPC call |
Input Schema (JSON Schema)
{
"properties": {
"chain": {
"description": "The blockchain to execute the RPC call on",
"type": "string"
},
"method": {
"description": "The RPC method to call",
"type": "string"
},
"params": {
"description": "The parameters for the RPC call",
"items": {
"type": "any"
},
"type": "array"
}
},
"required": [
"chain",
"method"
],
"type": "object"
}