get-address-info
Retrieve detailed information about a Bitcoin address, including transaction history and balance, using the Mempool MCP Server for real-time blockchain data.
Instructions
Returns details about an address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | The address to get info for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"address": {
"description": "The address to get info for",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}