get_nft
Pack: opensea · Endpoint: https://gateway.pipeworx.io/opensea/mcp
Single NFT by chain + contract address + token ID.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
chain | string | yes | Chain slug (ethereum, polygon, base, arbitrum, optimism, avalanche, klaytn, bsc, solana, etc.) |
contract_address | string | yes | Contract address (0x… for EVM) |
token_id | string | yes | Token ID (numeric string for ERC-721/1155) |
Example call
Arguments
{
"chain": "ethereum",
"contract_address": "0xbc4ca0eda7647a8ab7c2061c2e2ad7d5d0d6c10a",
"token_id": "1"
}
curl
curl -X POST https://gateway.pipeworx.io/opensea/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_nft","arguments":{"chain":"ethereum","contract_address":"0xbc4ca0eda7647a8ab7c2061c2e2ad7d5d0d6c10a","token_id":"1"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_nft', {
"chain": "ethereum",
"contract_address": "0xbc4ca0eda7647a8ab7c2061c2e2ad7d5d0d6c10a",
"token_id": "1"
});
More examples
{
"chain": "solana",
"contract_address": "EPjFWaLb3hyJCKESKAul7f2z6VJiGipHvd9pRnqYQts",
"token_id": "42"
}
Response shape
Always returns: identifier, collection, contract, standard, name, description, image, animation, metadata_url, opensea_url, updated_at, disabled, nsfw, traits, owners, rarity_rank, rarity_score
| Field | Type | Description |
|---|---|---|
identifier | string | null | Token ID |
collection | string | null | Collection slug |
contract | string | null | Contract address |
standard | string | null | Token standard (ERC721, ERC1155) |
name | string | null | NFT name |
description | string | null | NFT description |
image | string | null | Display image URL |
animation | string | null | Animation/video URL |
metadata_url | string | null | Metadata URL |
opensea_url | string | null | OpenSea item page URL |
updated_at | string | null | Last update timestamp |
disabled | boolean | Whether NFT is disabled |
nsfw | boolean | Whether NFT is marked NSFW |
traits | array | NFT traits/attributes |
owners | array | Current owners (for ERC1155 multiple owners possible) |
rarity_rank | number | null | Rarity rank in collection |
rarity_score | number | null | Rarity score |
Full JSON Schema
{
"type": "object",
"properties": {
"identifier": {
"type": [
"string",
"null"
],
"description": "Token ID"
},
"collection": {
"type": [
"string",
"null"
],
"description": "Collection slug"
},
"contract": {
"type": [
"string",
"null"
],
"description": "Contract address"
},
"standard": {
"type": [
"string",
"null"
],
"description": "Token standard (ERC721, ERC1155)"
},
"name": {
"type": [
"string",
"null"
],
"description": "NFT name"
},
"description": {
"type": [
"string",
"null"
],
"description": "NFT description"
},
"image": {
"type": [
"string",
"null"
],
"description": "Display image URL"
},
"animation": {
"type": [
"string",
"null"
],
"description": "Animation/video URL"
},
"metadata_url": {
"type": [
"string",
"null"
],
"description": "Metadata URL"
},
"opensea_url": {
"type": [
"string",
"null"
],
"description": "OpenSea item page URL"
},
"updated_at": {
"type": [
"string",
"null"
],
"description": "Last update timestamp"
},
"disabled": {
"type": "boolean",
"description": "Whether NFT is disabled"
},
"nsfw": {
"type": "boolean",
"description": "Whether NFT is marked NSFW"
},
"traits": {
"type": "array",
"description": "NFT traits/attributes",
"items": {
"type": "object",
"properties": {
"type": {
"type": [
"string",
"null"
],
"description": "Trait name"
},
"value": {
"type": [
"string",
"number",
"null"
],
"description": "Trait value"
},
"display_type": {
"type": [
"string",
"null"
],
"description": "Display type hint"
}
}
}
},
"owners": {
"type": "array",
"description": "Current owners (for ERC1155 multiple owners possible)",
"items": {
"type": "object",
"properties": {
"address": {
"type": [
"string",
"null"
],
"description": "Owner address"
},
"quantity": {
"type": "number",
"description": "Quantity owned"
}
}
}
},
"rarity_rank": {
"type": [
"number",
"null"
],
"description": "Rarity rank in collection"
},
"rarity_score": {
"type": [
"number",
"null"
],
"description": "Rarity score"
}
},
"required": [
"identifier",
"collection",
"contract",
"standard",
"name",
"description",
"image",
"animation",
"metadata_url",
"opensea_url",
"updated_at",
"disabled",
"nsfw",
"traits",
"owners",
"rarity_rank",
"rarity_score"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"opensea": {
"url": "https://gateway.pipeworx.io/opensea/mcp"
}
}
}
See Getting Started for client-specific install steps.