OpenSea
live BlockchainNFTNFT marketplace data — collection stats, owned NFTs, individual NFTs across EVM chains.
5 tools
0ms auth
free tier 50 calls/day
Tools
get_collection
required: collection_slug Collection metadata by OpenSea slug.
Parameters
Name Type Description
collection_slug req string OpenSea slug Try it
Response
get_collection_stats
required: collection_slug Floor / volume / supply / owners.
Parameters
Name Type Description
collection_slug req string OpenSea slug Try it
Response
list_collection_nfts
required: collection_slug NFTs inside a collection.
Parameters
Name Type Description
collection_slug req string OpenSea slug limit opt number 1-200 (default 50) next opt string Pagination cursor Try it
Response
get_nft
required: chain, contract_address, token_id Single NFT by chain + contract + token ID.
Parameters
Name Type Description
chain req string Chain slug contract_address req string Contract address token_id req string Token ID Try it
Response
list_owned_nfts
required: chain, address NFTs held by an address on a chain.
Parameters
Name Type Description
chain req string Chain slug address req string Wallet address limit opt number 1-200 next opt string Pagination cursor collection_slug opt string Restrict to one collection Try it
Response
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
List available tools
bash
curl -X POST https://gateway.pipeworx.io/opensea/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' Call a tool
bash
curl -X POST https://gateway.pipeworx.io/opensea/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"get_collection","arguments":{"collection_slug": "example"}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("get_collection", {"collection_slug":"example"}); ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("nft marketplace data — collection stats, owned nfts, individual nfts across evm chains");