Skip to main content
Glama
Crawlora-org

Crawlora MCP

Official

opensea_collection

Fetch OpenSea collection data including metadata, floor price, and sales statistics across multiple time periods. Returns 404 for delisted or blacklisted collections.

Instructions

Get an OpenSea collection. Returns public marketplace metadata and trading statistics for one NFT collection: name, description, imagery, verification flag, contract address and chain, social links, current floor price and top collection offer, plus lifetime and rolling one-hour/one-day/seven-day/thirty-day sales, volume, and floor-price change. Delisted and blacklisted collections return 404 rather than an empty payload.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugYesOpenSea collection slug

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.16.2

TDQS

A3.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description must carry the full behavioral disclosure. It does mention that delisted and blacklisted collections return 404 rather than an empty payload, which is a useful edge-case behavior. It also specifies that it returns 'public marketplace metadata', indicating a read-only operation. It does not cover authentication or rate limits, but those are not critical for a GET-style tool. No contradictions with annotations (none provided).

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is reasonably concise given the amount of returned data. It leads with the main purpose, then lists the fields, and finishes with the 404 edge case. It is structured and readable. Slightly long but justified by the enumerations.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

There is no output schema, so the description must explain the return data. It does so thoroughly by listing the metadata, stats, and the 404 case. It covers the key aspects an agent needs to know to call the tool correctly. It does not explain how to derive a slug, but that is likely a domain detail that can be assumed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema provides 100% coverage for the single parameter 'slug' with description 'OpenSea collection slug'. The tool description does not add any further meaning about the slug (e.g., how to obtain it, format, or example). Since schema coverage is high, baseline is 3, and the description adds no extra semantic value beyond what the schema already provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb ('Get') and the resource ('an OpenSea collection'), and enumerates the returned data (metadata, trading statistics, verification flag, etc.). It is specific about scope ('one NFT collection'). However, it does not explicitly contrast with the many sibling opensea_collection_* tools (e.g., activity, holders, offers), so an agent must infer which one is the base collection info tool.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit guidance on when to use this tool versus alternatives. The description only describes what it does, not when to select it over opensea_collection_items or opensea_collection_offers. There is no mention of 'use this for basic collection info' or 'for activities use opensea_collection_activity'. The agent is left to infer from the name and description.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools