validate_address
Verify the validity of a Bitcoin address to ensure correctness and compatibility for transactions and blockchain interactions using the Bitcoin MCP Server.
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"
}