nft_owners
Pack: alchemy-eth · Endpoint: https://gateway.pipeworx.io/alchemy-eth/mcp
Owners of a contract/token.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
contract | string | yes | |
tokenId | string | no | |
chain | string | no |
Example call
Arguments
{
"contract": "0xBC4CA0EdA7647A8aB7C2061c2E2ad6310f674457"
}
curl
curl -X POST https://gateway.pipeworx.io/alchemy-eth/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"nft_owners","arguments":{"contract":"0xBC4CA0EdA7647A8aB7C2061c2E2ad6310f674457"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('nft_owners', {
"contract": "0xBC4CA0EdA7647A8aB7C2061c2E2ad6310f674457"
});
More examples
{
"contract": "0xBC4CA0EdA7647A8aB7C2061c2E2ad6310f674457",
"tokenId": "1"
}
Response shape
| Field | Type | Description |
|---|---|---|
owners | array | Array of owner addresses |
pageKey | string | Pagination key for next page |
Full JSON Schema
{
"type": "object",
"properties": {
"owners": {
"type": "array",
"description": "Array of owner addresses",
"items": {
"type": "string"
}
},
"pageKey": {
"type": "string",
"description": "Pagination key for next page"
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"alchemy-eth": {
"url": "https://gateway.pipeworx.io/alchemy-eth/mcp"
}
}
}
See Getting Started for client-specific install steps.