MCP Server
Beralink

NFT market intelligence via the Model Context Protocol. Query collections, rankings, and AI-powered analysis directly from your LLM client.

LIVE ON RENDER
POST https://beralink-mcp.onrender.com/mcp
Available Tools 4 tools
01
get_nft_list READ
Browse and paginate through NFT collections. Filter by category to narrow down results.
+ PARAMS
Parameters
category optional string Filter collections by category (e.g. "art", "gaming", "pfp"). Defaults to all categories. Default: ""
page optional int Page number for pagination. Default: 1
limit optional int Number of collections to return per page. Default: 20
02
get_nft_detail READ
Fetch detailed metadata and stats for a specific NFT collection by its slug or identifier.
+ PARAMS
Parameters
collection string Collection slug or identifier (e.g. "bored-ape-yacht-club"). Required.
03
get_top_nfts_by_volume READ
Retrieve the top-ranked NFT collections sorted by trading volume in descending order.
+ PARAMS
Parameters
top_n optional int How many top collections to return. Default: 10
04
analyze_nft_market ANALYSIS API KEY
AI-powered market analysis using an LLM backend. Returns trend summaries, sentiment, and actionable insights.
+ PARAMS
Parameters
focus optional string Analysis focus area. Examples: "overall", "trending", "blue-chip", "volume-spike". Default: "overall"
๐Ÿ”‘ This tool connects to an LLM for analysis and requires an API key. Pass your key in the request header as X-API-Key, or configure it in your MCP client settings before calling this tool.
Quick Setup
{
  "mcpServers": {
    "beralink": {
      "url": "https://beralink-mcp.onrender.com/mcp",
      "transport": "http"
    }
  }
}
npx @modelcontextprotocol/inspector
# then enter: https://beralink-mcp.onrender.com/mcp
curl -X POST https://beralink-mcp.onrender.com/mcp \
  -H "Content-Type: application/json" \
  -H "Accept: text/event-stream" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}'