Skip to main content
Glama

zora_get_profile_coins

Retrieve coins created by a specific profile on the Zora Coins platform to analyze creator activity and explore their digital assets.

Instructions

List coins created by a profile.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
identifierYes
countNo
afterNo
chainIdsNo
platformReferrerAddressNo

Implementation Reference

  • The handler function for the 'zora_get_profile_coins' tool. It calls CoinsSDK.getProfileCoins with the input arguments and returns the response formatted as JSON text 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 definition for the 'zora_get_profile_coins' tool using Zod for validation, including parameters like identifier, 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(), }, },
  • src/index.ts:228-246 (registration)
    Registration of the 'zora_get_profile_coins' tool with the MCP server, specifying the tool name, schema, and handler function.
    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) }] }; } );

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