Skip to main content
Glama

zora_get_profile

Fetch profile data for a wallet address or @handle to analyze user activity and holdings within the Zora Coins ecosystem on Base mainnet.

Instructions

Fetch profile for a wallet or @handle.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
identifierYes

Implementation Reference

  • src/index.ts:212-226 (registration)
    Registration of the 'zora_get_profile' tool using server.registerTool, including schema and inline handler.
    server.registerTool( "zora_get_profile", { title: "Get profile", description: "Fetch profile for a wallet or @handle.", inputSchema: { identifier: z.string().min(1, "identifier (wallet or handle) is required"), }, }, async ({ identifier }) => { // @ts-expect-error - TypeScript can't resolve barrel exports properly const resp = await CoinsSDK.getProfile({ identifier }); return { content: [{ type: "text", text: json(resp) }] }; } );
  • The handler function that executes the tool: calls CoinsSDK.getProfile(identifier) and formats the response as MCP content.
    async ({ identifier }) => { // @ts-expect-error - TypeScript can't resolve barrel exports properly const resp = await CoinsSDK.getProfile({ identifier }); return { content: [{ type: "text", text: json(resp) }] }; }
  • Input schema using Zod: requires a string 'identifier' for wallet address or handle.
    inputSchema: { identifier: z.string().min(1, "identifier (wallet or handle) is required"), },

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/r4topunk/zora-coins-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server