Skip to main content
Glama

helius_get_nft_editions

Retrieve all NFT editions associated with a specific master edition on the Solana blockchain using Helius API data.

Instructions

Get NFT editions for a master edition

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
masterEditionIdYes
pageNo
limitNo

Implementation Reference

  • The handler function that executes the logic for helius_get_nft_editions by calling the Helius RPC method getNftEditions.
    export const getNftEditionsHandler = async (input: { masterEditionId: string, page?: number, limit?: number }): Promise<ToolResultSchema> => { try { const editions = await (helius as any as Helius).rpc.getNftEditions(input); return createSuccessResponse(`NFT editions: ${JSON.stringify(editions, null, 2)}`); } catch (error) { return createErrorResponse(`Error getting NFT editions: ${error instanceof Error ? error.message : String(error)}`); } }
  • The input schema definition for the helius_get_nft_editions tool.
    { name: 'helius_get_nft_editions', description: 'Get NFT editions for a master edition', inputSchema: { type: 'object', properties: { masterEditionId: { type: 'string' }, page: { type: 'number' }, limit: { type: 'number' } }, required: ['masterEditionId'] } },
  • src/tools.ts:582-582 (registration)
    The registration mapping the tool name to its handler function.
    "helius_get_nft_editions": helius.getNftEditionsHandler,

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/dcSpark/mcp-server-helius'

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