Skip to main content
Glama

Blockscout MCP Server

Official

get_transactions_by_address

Retrieve transactions for a specific address within defined time ranges using Blockscout MCP Server. Filter by method signature to access detailed blockchain activity data for analysis.

Instructions

Get transactions for an address within a specific time range. Use cases: - `get_transactions_by_address(address, age_from)` - get all transactions to/from the address since the given date up to the current time - `get_transactions_by_address(address, age_from, age_to)` - get all transactions to/from the address between the given dates - `get_transactions_by_address(address, age_from, age_to, methods)` - get all transactions to/from the address between the given dates and invoking the given method signature Manipulating `age_from` and `age_to` allows you to paginate through results by time ranges.

Input Schema

NameRequiredDescriptionDefault
addressYesAddress which either sender or receiver of the transaction
age_fromNoStart date and time (e.g 2025-05-22T23:00:00.00Z).
age_toNoEnd date and time (e.g 2025-05-22T22:30:00.00Z).
chain_idYesThe ID of the blockchain
methodsNoA method signature to filter transactions by (e.g 0x304e6ade)

Input Schema (JSON Schema)

{ "properties": { "address": { "description": "Address which either sender or receiver of the transaction", "title": "Address", "type": "string" }, "age_from": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "description": "Start date and time (e.g 2025-05-22T23:00:00.00Z).", "title": "Age From" }, "age_to": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "description": "End date and time (e.g 2025-05-22T22:30:00.00Z).", "title": "Age To" }, "chain_id": { "description": "The ID of the blockchain", "title": "Chain Id", "type": "string" }, "methods": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "description": "A method signature to filter transactions by (e.g 0x304e6ade)", "title": "Methods" } }, "required": [ "chain_id", "address" ], "title": "get_transactions_by_addressArguments", "type": "object" }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/blockscout/mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server