get-historical-price
Retrieve the Bitcoin price for a specific date in YYYY-MM-DD format using this tool from the Mempool MCP Server, designed for accessing historical BTC price data.
Instructions
Returns the BTC price for a specific date (YYYY-MM-DD)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | Yes | The date in YYYY-MM-DD format |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"date": {
"description": "The date in YYYY-MM-DD format",
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"type": "string"
}
},
"required": [
"date"
],
"type": "object"
}