Nostr MCP Server

by AustinKelsay
Verified

getProfile

Get a Nostr profile by public key

Input Schema

NameRequiredDescriptionDefault
pubkeyYesPublic key of the Nostr user (hex format or npub format)
relaysNoOptional list of relays to query

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "pubkey": { "description": "Public key of the Nostr user (hex format or npub format)", "type": "string" }, "relays": { "description": "Optional list of relays to query", "items": { "type": "string" }, "type": "array" } }, "required": [ "pubkey" ], "type": "object" }