skills$openclaw/opensea-mcp
dfinzer3.1k

by dfinzer

opensea-mcp – OpenClaw Skill

opensea-mcp is an OpenClaw Skills integration for coding workflows. Query OpenSea NFT marketplace data via official MCP server. Get floor prices, trending collections, token prices, wallet balances, swap quotes, and NFT holdings. Supports Ethereum, Base, Polygon, Solana, and other major chains. Requires OpenSea developer account for MCP token.

3.1k stars5.0k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameopensea-mcp
descriptionQuery OpenSea NFT marketplace data via official MCP server. Get floor prices, trending collections, token prices, wallet balances, swap quotes, and NFT holdings. Supports Ethereum, Base, Polygon, Solana, and other major chains. Requires OpenSea developer account for MCP token. OpenClaw Skills integration.
ownerdfinzer
repositorydfinzer/opensea-mcp
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @dfinzer/opensea-mcp
last updatedFeb 7, 2026

Maintainer

dfinzer

dfinzer

Maintains opensea-mcp in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
271 B
SKILL.md
3.0 KB
SKILL.md

name: opensea-mcp description: Query OpenSea NFT marketplace data via official MCP server. Get floor prices, trending collections, token prices, wallet balances, swap quotes, and NFT holdings. Supports Ethereum, Base, Polygon, Solana, and other major chains. Requires OpenSea developer account for MCP token. homepage: https://docs.opensea.io/docs/mcp metadata: {"openclaw":{"emoji":"🌊","requires":{"bins":["mcporter"],"env":["OPENSEA_MCP_TOKEN"]}}}

OpenSea MCP

Access OpenSea's NFT marketplace data via the official hosted MCP server.

Setup

1. Get MCP Token

  1. Sign in to opensea.io
  2. Go to Settings → Developer
  3. Copy your MCP token

2. Add to Environment

# Add to ~/.openclaw/.env or export
OPENSEA_MCP_TOKEN=your_token_here

3. Configure mcporter

Add to config/mcporter.json:

{
  "mcpServers": {
    "opensea": {
      "baseUrl": "https://mcp.opensea.io/mcp",
      "description": "OpenSea NFT Data API",
      "headers": {
        "Authorization": "Bearer ${OPENSEA_MCP_TOKEN}"
      }
    }
  }
}

4. Test

mcporter list opensea
mcporter call 'opensea.search(query: "trending NFT collections")'

Available Tools

ToolDescriptionExample
searchAI-powered search across OpenSeasearch(query: "Pudgy Penguins")
get_collectionsCollection details, floor, statsget_collections(slugs: ["pudgypenguins"])
search_collectionsFind collections by namesearch_collections(query: "azuki")
get_itemsNFT item detailsget_items(ids: ["..."])
search_itemsFind individual NFTssearch_items(query: "Bored Ape #1234")
get_tokensToken/coin pricesget_tokens(symbols: ["WETH"])
search_tokensFind tokenssearch_tokens(query: "PEPE")
get_token_swap_quoteSwap quotes with gasget_token_swap_quote(...)
get_token_balancesWallet token holdingsget_token_balances(address: "0x...")
get_nft_balancesWallet NFT holdingsget_nft_balances(address: "vitalik.eth")

Usage Examples

mcporter call 'opensea.get_collections(slugs: ["pudgypenguins", "azuki", "boredapeyachtclub"])'

Search Trending

mcporter call 'opensea.search(query: "trending NFT collections this week")'

Check Wallet NFTs

mcporter call 'opensea.get_nft_balances(address: "vitalik.eth")'

Token Prices

mcporter call 'opensea.get_tokens(symbols: ["ETH", "WETH", "USDC"])'

Swap Quote

mcporter call 'opensea.get_token_swap_quote(from: "ETH", to: "USDC", amount: "1")'

Supported Chains

Ethereum, Base, Polygon, Solana, Arbitrum, Optimism, Avalanche, BNB Chain, Klaytn

Resources

README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install opensea-mcp?

Run openclaw add @dfinzer/opensea-mcp in your terminal. This installs opensea-mcp into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/dfinzer/opensea-mcp. Review commits and README documentation before installing.