invoke_resource_action
Trigger specific operations on blockchain resources by providing a resource, action, and payload. Enables interaction with blockchain data through the Seitrace Insights MCP Server for querying token details, transactions, and smart contracts.
Instructions
Invoke a resource action with a payload matching its schema.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | ||
payload | Yes | ||
resource | Yes |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"description": "Provide resource, action, and payload object.",
"properties": {
"action": {
"type": "string"
},
"payload": {
"additionalProperties": true,
"type": "object"
},
"resource": {
"type": "string"
}
},
"required": [
"resource",
"action",
"payload"
],
"type": "object"
}