OpenSea
liveCryptoMarketsNFT marketplace data — collection stats, owned NFTs, individual NFTs across EVM chains.
5tools
0msauth
free tier50 calls/day
Tools
get_collectionrequired: collection_slugCollection metadata by OpenSea slug.
Parameters
NameTypeDescription
collection_slugreqstringOpenSea slugTry it
Response
get_collection_statsrequired: collection_slugFloor / volume / supply / owners.
Parameters
NameTypeDescription
collection_slugreqstringOpenSea slugTry it
Response
list_collection_nftsrequired: collection_slugNFTs inside a collection.
Parameters
NameTypeDescription
collection_slugreqstringOpenSea sluglimitoptnumber1-200 (default 50)nextoptstringPagination cursorTry it
Response
get_nftrequired: chain, contract_address, token_idSingle NFT by chain + contract + token ID.
Parameters
NameTypeDescription
chainreqstringChain slugcontract_addressreqstringContract addresstoken_idreqstringToken IDTry it
Response
list_owned_nftsrequired: chain, addressNFTs held by an address on a chain.
Parameters
NameTypeDescription
chainreqstringChain slugaddressreqstringWallet addresslimitoptnumber1-200nextoptstringPagination cursorcollection_slugoptstringRestrict to one collectionTry 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");