MetaMask MCP

verify-message

Confirm the authenticity of a signed Ethereum message by verifying it against the provided address, message, and signature. Utilizes blockchain interaction through MetaMask for secure validation.

Instructions

Verify that a message was signed by the provided address.

Input Schema

NameRequiredDescriptionDefault
addressYesThe Ethereum address that signed the original message.
messageYesThe message to be verified.
signatureYesThe signature that was generated by signing the message with the address's signer.

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "address": { "description": "The Ethereum address that signed the original message.", "type": "string" }, "message": { "description": "The message to be verified.", "type": "string" }, "signature": { "description": "The signature that was generated by signing the message with the address's signer.", "type": "string" } }, "required": [ "address", "message", "signature" ], "type": "object" }
ID: cw2ldcetl4