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
| Name | Required | Description | Default |
|---|---|---|---|
| identifier | Yes | ||
| count | No | ||
| after | No | ||
| chainIds | No | ||
| platformReferrerAddress | No |
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.getProfileCoinsserver.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) }] }; } );
- src/index.ts:241-245 (handler)Handler function executes the tool logic by calling CoinsSDK.getProfileCoins with input args and formats response as MCP contentasync (args) => { // @ts-expect-error - TypeScript can't resolve barrel exports properly const resp = await CoinsSDK.getProfileCoins(args); return { content: [{ type: "text", text: json(resp) }] }; }
- src/index.ts:230-239 (schema)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(), },