Skip to main content
Glama

get_new_owners

Retrieve the count of new wallet owners for NFT collections to track adoption and growth metrics using analytics data.

Instructions

Retrieve count of new NFT owners. Returns: str: Count of new wallet owners as a string, or "N/A" if no data is available, or error message if the query fails.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • main.py:123-137 (handler)
    The main handler function for the get_new_owners tool. It is registered via the @mcp.tool() decorator. Fetches data from Dune Analytics query ID 5140497 using the helper get_latest_result and extracts the count of new wallets from the first row of results.
    @mcp.tool() def get_new_owners() -> str: """ Retrieve count of new NFT owners. Returns: str: Count of new wallet owners as a string, or "N/A" if no data is available, or error message if the query fails. """ try: data = get_latest_result(5140497) return data[0].get("new_wallets", "N/A") except Exception as e: return str(e)

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/kukapay/nft-analytics-mcp'

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