3.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.
Skill Snapshot
| 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. OpenClaw Skills integration. |
| owner | dfinzer |
| repository | dfinzer/opensea-mcp |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @dfinzer/opensea-mcp |
| last updated | Feb 7, 2026 |
Maintainer

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
- Sign in to opensea.io
- Go to Settings → Developer
- 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
| Tool | Description | Example |
|---|---|---|
search | AI-powered search across OpenSea | search(query: "Pudgy Penguins") |
get_collections | Collection details, floor, stats | get_collections(slugs: ["pudgypenguins"]) |
search_collections | Find collections by name | search_collections(query: "azuki") |
get_items | NFT item details | get_items(ids: ["..."]) |
search_items | Find individual NFTs | search_items(query: "Bored Ape #1234") |
get_tokens | Token/coin prices | get_tokens(symbols: ["WETH"]) |
search_tokens | Find tokens | search_tokens(query: "PEPE") |
get_token_swap_quote | Swap quotes with gas | get_token_swap_quote(...) |
get_token_balances | Wallet token holdings | get_token_balances(address: "0x...") |
get_nft_balances | Wallet NFT holdings | get_nft_balances(address: "vitalik.eth") |
Usage Examples
Get Floor Prices
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
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.
