validate_address
Check if a Bitcoin address is valid using the Bitcoin MCP Server. Ensure address integrity for secure transactions and network interactions with this address validation tool.
Instructions
Validate a Bitcoin address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | The Bitcoin address to validate |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "The Bitcoin address to validate",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}