Hive MCP Server

by gluneau
Verified

verify_signature

Verify a digital signature against a Hive public key

Input Schema

NameRequiredDescriptionDefault
message_hashYesThe SHA-256 hash of the message in hex format (64 characters)
public_keyYesPublic key to verify against (with or without the STM prefix)
signatureYesSignature string to verify

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "message_hash": { "description": "The SHA-256 hash of the message in hex format (64 characters)", "type": "string" }, "public_key": { "description": "Public key to verify against (with or without the STM prefix)", "type": "string" }, "signature": { "description": "Signature string to verify", "type": "string" } }, "required": [ "message_hash", "signature", "public_key" ], "type": "object" }