Server Configuration
Describes the environment variables required to run the server.
Name | Required | Description | Default |
---|---|---|---|
No arguments |
Schema
Prompts
Interactive templates invoked by user choice
Name | Description |
---|---|
No prompts |
Resources
Contextual data attached and managed by the client
Name | Description |
---|---|
No resources |
Tools
Functions exposed to the LLM to take actions
Name | Description |
---|---|
get_daily_trading_volume_by_collection | Retrieve daily trading volume for top 5 Ethereum NFT collections.
Args:
limit (int, optional): Maximum number of rows to fetch from the query. Defaults to 1000.
Returns:
str: Markdown table of daily trading volumes by collection, or error message if the query fails. |
get_daily_sales_by_collection | Retrieve number of daily sales for NFT collections.
Args:
limit (int, optional): Maximum number of rows to fetch from the query. Defaults to 1000.
Returns:
str: Markdown table of daily sales counts by collection, or error message if the query fails. |
get_average_price_by_collection | Retrieve average selling price for NFT collections.
Args:
limit (int, optional): Maximum number of rows to fetch from the query. Defaults to 1000.
Returns:
str: Markdown table of average prices by collection, or error message if the query fails. |
get_unique_traders_by_collection | Retrieve count of unique buyers and sellers for NFT collections.
Args:
limit (int, optional): Maximum number of rows to fetch from the query. Defaults to 1000.
Returns:
str: Markdown table of unique traders by collection, or error message if the query fails. |
get_new_owners | 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. |