Skip to main content
Glama

zora_get_profile_coins

Retrieve coins created by a profile on Zora Coins to analyze creator activity and explore their tokenized assets.

Instructions

List coins created by a profile.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
identifierYes
countNo
afterNo
chainIdsNo
platformReferrerAddressNo

Implementation Reference

  • src/index.ts:228-246 (registration)
    Registers the 'zora_get_profile_coins' MCP tool, defining its schema and thin handler wrapper around CoinsSDK.getProfileCoins
    server.registerTool( "zora_get_profile_coins", { title: "Get profile-created coins", description: "List coins created by a profile.", inputSchema: { identifier: z.string(), count: z.number().int().min(1).max(100).optional(), after: z.string().optional(), chainIds: z.array(z.number()).optional(), platformReferrerAddress: z.array(z.string()).optional(), }, }, async (args) => { // @ts-expect-error - TypeScript can't resolve barrel exports properly const resp = await CoinsSDK.getProfileCoins(args); return { content: [{ type: "text", text: json(resp) }] }; } );
  • Handler function executes the tool logic by calling CoinsSDK.getProfileCoins with input args and formats response as MCP content
    async (args) => { // @ts-expect-error - TypeScript can't resolve barrel exports properly const resp = await CoinsSDK.getProfileCoins(args); return { content: [{ type: "text", text: json(resp) }] }; }
  • Input schema using Zod for validating tool parameters: identifier (required), optional pagination (count, after), chainIds, and platformReferrerAddress
    { title: "Get profile-created coins", description: "List coins created by a profile.", inputSchema: { identifier: z.string(), count: z.number().int().min(1).max(100).optional(), after: z.string().optional(), chainIds: z.array(z.number()).optional(), platformReferrerAddress: z.array(z.string()).optional(), },

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