getSafeTransactions
Retrieve all transactions for a Safe address with optional pagination. Use this tool to query, manage, and analyze transaction details for multisig wallets on the Safe MCP Server.
Instructions
Get all transactions for a Safe address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | Safe address | |
limit | No | Number of transactions to return | |
offset | No | Offset for pagination |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "Safe address",
"type": "string"
},
"limit": {
"description": "Number of transactions to return",
"type": "number"
},
"offset": {
"description": "Offset for pagination",
"type": "number"
}
},
"required": [
"address"
],
"type": "object"
}